diff options
author | Phil Sutter <phil@nwl.cc> | 2022-11-28 01:46:20 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2022-11-28 08:27:11 +0100 |
commit | ad982cfc03124e180f7272ad15fa54643742e494 (patch) | |
tree | 1344046ed963adf3502c23a2910e040033773e71 | |
parent | dc02c77e1dd2e5194c3912b8dc41f6c4b3f5f2c7 (diff) |
package: dropbear: Minor Makefile fix
The file options.h does not exist anymore, instead custom overrides
should go into localoptions.h. Both settings are not needed anymore
though, so no functional change.
Signed-off-by: Phil Sutter <phil@nwl.cc>
-rw-r--r-- | package/dropbear/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/package/dropbear/Makefile b/package/dropbear/Makefile index 050729a5c..68f735451 100644 --- a/package/dropbear/Makefile +++ b/package/dropbear/Makefile @@ -5,7 +5,7 @@ include $(ADK_TOPDIR)/rules.mk PKG_NAME:= dropbear PKG_VERSION:= 2020.81 -PKG_RELEASE:= 1 +PKG_RELEASE:= 2 PKG_HASH:= 48235d10b37775dbda59341ac0c4b239b82ad6318c31568b985730c788aac53b PKG_DESCR:= ssh server/client designed for embedded systems PKG_SECTION:= net/security @@ -48,8 +48,7 @@ endif pre-configure: - $(SED) 's,^/\* #define PKG_MULTI.*,#define PKG_MULTI,g' $(WRKBUILD)/options.h - $(SED) 's,^#define DO_HOST_LOOKUP,/* & */,g' $(WRKBUILD)/options.h + echo "#define DO_HOST_LOOKUP 0" >>$(WRKBUILD)/localoptions.h do-build: cd ${WRKBUILD} && env ${MAKE_ENV} ${MAKE} \ |