diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-02-25 00:42:09 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-02-25 00:42:09 +0000 |
commit | 7b4daec3618b8e7736c6fa4d96b43709b28dd7be (patch) | |
tree | 881f8f8ba47bd8de10d58b2788e0fe23cb4aa8c3 /package | |
parent | 84909d08d3bcf6a1dcab23fff062057e69762448 (diff) |
[package] busybox: disable busybox' own stripping, fixes stripped bb binary in STAGING_DIR_ROOT
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19852 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/busybox/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/busybox/Makefile b/package/busybox/Makefile index 43da0a48d..c53806119 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -70,6 +70,7 @@ define Build/Compile KBUILD_HAVE_NLS=no \ EXTRA_CFLAGS="$(TARGET_CFLAGS)" \ ARCH="$(ARCH)" \ + SKIP_STIP=y \ all rm -rf $(PKG_INSTALL_DIR) $(FIND) $(PKG_BUILD_DIR) -lname "*busybox" -exec rm \{\} \; @@ -78,7 +79,6 @@ define Build/Compile CROSS_COMPILE="$(TARGET_CROSS)" \ EXTRA_CFLAGS="$(TARGET_CFLAGS)" \ ARCH="$(ARCH)" \ - IPKG_ARCH="$(ARCH)" \ CONFIG_PREFIX="$(PKG_INSTALL_DIR)" \ install endef |