X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=package%2Fbusybox%2FMakefile;h=2f977942618c93b10c18a47c2945a6a9fa7e701b;hb=875000f68adc598093312913ade3e2a68210b384;hp=ec9a1bad88584da99560f61085605efafc0bbc2d;hpb=c21f714e30ff588cf3f7c9c0f351874b87453b95;p=openwrt.git diff --git a/package/busybox/Makefile b/package/busybox/Makefile index ec9a1bad88..2f97794261 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -9,13 +9,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=busybox -PKG_VERSION:=1.4.2 +PKG_VERSION:=1.11.3 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://www.busybox.net/downloads \ http://distfiles.gentoo.org/distfiles/ -PKG_MD5SUM:=b4c61fb15642be9dde20e8493788c585 +PKG_MD5SUM:=4355ad8bb57ce3b39ad827566c1a6da3 include $(INCLUDE_DIR)/package.mk @@ -37,14 +37,14 @@ define Package/busybox endef define Package/busybox/description -The Swiss Army Knife of embedded Linux. - It slices, it dices, it makes Julian Fries. + The Swiss Army Knife of embedded Linux. + It slices, it dices, it makes Julian Fries. endef define Package/busybox/config - source "$(SOURCE)/target-config.in" menu "Configuration" depends on PACKAGE_busybox + source "$(SOURCE)/target-config.in" source "$(SOURCE)/config/Config.in" endmenu endef @@ -55,6 +55,7 @@ define Build/Configure yes '' | $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ CROSS_COMPILE="$(TARGET_CROSS)" \ + KBUILD_HAVE_NLS=no \ ARCH="$(ARCH)" \ oldconfig endef @@ -63,6 +64,7 @@ define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ CROSS_COMPILE="$(TARGET_CROSS)" \ + KBUILD_HAVE_NLS=no \ EXTRA_CFLAGS="$(TARGET_CFLAGS)" \ ARCH="$(ARCH)" \ IPKG_ARCH="$(ARCH)" \ @@ -70,7 +72,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)" \