summaryrefslogtreecommitdiffstats
path: root/package/busybox/Makefile
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-06-14 08:03:09 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-06-14 08:03:09 +0000
commitc21f714e30ff588cf3f7c9c0f351874b87453b95 (patch)
treeaf93f184fd3be09aac6d45a7ce5c53b667c2abd1 /package/busybox/Makefile
parent720eb91f488ec4633e6ab4cd43f369c2f553c49c (diff)
Fix removing links to applets (#1770)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7628 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/Makefile')
-rw-r--r--package/busybox/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/busybox/Makefile b/package/busybox/Makefile
index 38740fdbf..ec9a1bad8 100644
--- a/package/busybox/Makefile
+++ b/package/busybox/Makefile
@@ -70,7 +70,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)" \