Skip to content
Snippets Groups Projects
Commit b418646d authored by Nicolas Thill's avatar Nicolas Thill
Browse files

remove unneeded autoconf call and flags, rename S50dropbear to dropbear.init,...

remove unneeded autoconf call and flags, rename S50dropbear to dropbear.init, normalize Makefile: - indent configure invocation, - use "install -d" instead of "mkdir -p".

SVN-Revision: 3995
parent 5bdf5b84
No related branches found
No related tags found
No related merge requests found
...@@ -34,44 +34,42 @@ define Build/Configure ...@@ -34,44 +34,42 @@ 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) \
--build=$(GNU_HOST_NAME) \ --build=$(GNU_HOST_NAME) \
--program-prefix="" \ --program-prefix="" \
--program-suffix="" \ --program-suffix="" \
--prefix=/usr \ --prefix=/usr \
--exec-prefix=/usr \ --exec-prefix=/usr \
--bindir=/usr/bin \ --bindir=/usr/bin \
--datadir=/usr/share \ --datadir=/usr/share \
--includedir=/usr/include \ --includedir=/usr/include \
--infodir=/usr/share/info \ --infodir=/usr/share/info \
--libdir=/usr/lib \ --libdir=/usr/lib \
--libexecdir=/usr/lib \ --libexecdir=/usr/lib \
--localstatedir=/var \ --localstatedir=/var \
--mandir=/usr/share/man \ --mandir=/usr/share/man \
--sbindir=/usr/sbin \ --sbindir=/usr/sbin \
--sysconfdir=/etc \ --sysconfdir=/etc \
$(DISABLE_LARGEFILE) \ $(DISABLE_LARGEFILE) \
$(DISABLE_NLS) \ $(DISABLE_NLS) \
--with-shared \ --with-shared \
--disable-pam \ --disable-pam \
--enable-openpty \ --enable-openpty \
--enable-syslog \ --enable-syslog \
--disable-shadow \ --disable-shadow \
--disable-lastlog \ --disable-lastlog \
--disable-utmp \ --disable-utmp \
--disable-utmpx \ --disable-utmpx \
--disable-wtmp \ --disable-wtmp \
--disable-wtmpx \ --disable-wtmpx \
--disable-loginfunc \ --disable-loginfunc \
--disable-pututline \ --disable-pututline \
--disable-pututxline \ --disable-pututxline \
--disable-zlib \ --disable-zlib \
); );
endef endef
...@@ -86,21 +84,21 @@ define Build/Compile ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment