Browse Source

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>
Phil Sutter 2 years ago
parent
commit
ad982cfc03
1 changed files with 2 additions and 3 deletions
  1. 2 3
      package/dropbear/Makefile

+ 2 - 3
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} \