mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-04 08:01:06 +02:00
remove unneeded autoconf call and flags, rename S50dropbear to dropbear.init,
normalize Makefile: - indent configure invocation, - use "install -d" instead of "mkdir -p". git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3995 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
b7bf0034f4
commit
5ac8df09f8
@ -34,10 +34,8 @@ define Build/Configure
|
|||||||
$(SED) 's,^/\* #define PKG_MULTI.*,#define PKG_MULTI,g' $(PKG_BUILD_DIR)/options.h
|
$(SED) 's,^/\* #define PKG_MULTI.*,#define PKG_MULTI,g' $(PKG_BUILD_DIR)/options.h
|
||||||
$(SED) 's,^#define DO_HOST_LOOKUP,/* & */,g' $(PKG_BUILD_DIR)/options.h
|
$(SED) 's,^#define DO_HOST_LOOKUP,/* & */,g' $(PKG_BUILD_DIR)/options.h
|
||||||
(cd $(PKG_BUILD_DIR); rm -rf config.cache; \
|
(cd $(PKG_BUILD_DIR); rm -rf config.cache; \
|
||||||
autoconf; \
|
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
|
|
||||||
./configure \
|
./configure \
|
||||||
--target=$(GNU_TARGET_NAME) \
|
--target=$(GNU_TARGET_NAME) \
|
||||||
--host=$(GNU_TARGET_NAME) \
|
--host=$(GNU_TARGET_NAME) \
|
||||||
@ -86,21 +84,21 @@ define Build/Compile
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/dropbear/install
|
define Package/dropbear/install
|
||||||
mkdir -p $(1)/usr/bin
|
install -d -m0755 $(1)/usr/sbin
|
||||||
mkdir -p $(1)/usr/sbin
|
install -m0755 $(PKG_BUILD_DIR)/dropbearmulti \
|
||||||
install -m 755 $(PKG_BUILD_DIR)/dropbearmulti \
|
|
||||||
$(1)/usr/sbin/dropbear
|
$(1)/usr/sbin/dropbear
|
||||||
|
install -d -m0755 $(1)/usr/bin
|
||||||
ln -sf ../sbin/dropbear $(1)/usr/bin/scp
|
ln -sf ../sbin/dropbear $(1)/usr/bin/scp
|
||||||
ln -sf ../sbin/dropbear $(1)/usr/bin/ssh
|
ln -sf ../sbin/dropbear $(1)/usr/bin/ssh
|
||||||
ln -sf ../sbin/dropbear $(1)/usr/bin/dbclient
|
ln -sf ../sbin/dropbear $(1)/usr/bin/dbclient
|
||||||
ln -sf ../sbin/dropbear $(1)/usr/bin/dropbearkey
|
ln -sf ../sbin/dropbear $(1)/usr/bin/dropbearkey
|
||||||
mkdir -p $(1)/etc/init.d
|
install -d -m0755 $(1)/etc/init.d
|
||||||
install -m 755 ./files/S50dropbear $(1)/etc/init.d/
|
install -m0755 ./files/dropbear.init $(1)/etc/init.d/S50dropbear
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/dropbearconvert/install
|
define Package/dropbearconvert/install
|
||||||
mkdir -p $(1)/usr/bin
|
install -d -m0755 $(1)/usr/bin
|
||||||
install -m 755 $(PKG_BUILD_DIR)/dropbearconvert \
|
install -m0755 $(PKG_BUILD_DIR)/dropbearconvert \
|
||||||
$(1)/usr/bin/dropbearconvert
|
$(1)/usr/bin/dropbearconvert
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user