diff options
| -rw-r--r-- | package/busybox/Makefile | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/package/busybox/Makefile b/package/busybox/Makefile index e214bb3ca..b6630225c 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -56,6 +56,7 @@ define Build/Configure  		CC="$(TARGET_CC)" \  		CROSS_COMPILE="$(TARGET_CROSS)" \  		ARCH="$(ARCH)" \ +		HOST_LOADLIBES=-lintl \  		oldconfig  endef @@ -70,7 +71,7 @@ define Build/Compile  endef  define Package/busybox/install -	find $(PKG_BUILD_DIR) -lname "*busybox" -exec rm \{\} \; +	$(FIND) $(PKG_BUILD_DIR) -lname "*busybox" -exec rm \{\} \;  	$(MAKE) -C $(PKG_BUILD_DIR) \  		CC="$(TARGET_CC)" \  		CROSS_COMPILE="$(TARGET_CROSS)" \  | 
