diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-10-06 04:50:53 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-10-06 04:50:53 +0000 |
commit | 1f0c5ad7aa3906a72be1266d621f8f01ff1974ea (patch) | |
tree | d39cbd71bb8b221cde61a6bd7078c93e4d075416 /package/Makefile | |
parent | fd7530be8f11f7d15ef07c571eab7a8ac9571129 (diff) | |
download | upstream-1f0c5ad7aa3906a72be1266d621f8f01ff1974ea.tar.gz upstream-1f0c5ad7aa3906a72be1266d621f8f01ff1974ea.tar.bz2 upstream-1f0c5ad7aa3906a72be1266d621f8f01ff1974ea.zip |
fix opkg directory cleaning (#5646)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17952 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/Makefile')
-rw-r--r-- | package/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/Makefile b/package/Makefile index f6c08e10a5..5734f9854c 100644 --- a/package/Makefile +++ b/package/Makefile @@ -75,7 +75,7 @@ $(curdir)/rootfs-prepare: $(TMP_DIR)/.build @-find $(TARGET_DIR) -name CVS | $(XARGS) rm -rf @-find $(TARGET_DIR) -name .svn | $(XARGS) rm -rf @-find $(TARGET_DIR) -name '.#*' | $(XARGS) rm -f - $(if $(CONFIG_CLEAN_IPKG),rm -rf $(TARGET_DIR)/usr/lib/ipkg) + $(if $(CONFIG_CLEAN_IPKG),rm -rf $(TARGET_DIR)/usr/lib/opkg) $(call mklibs) $(curdir)/index: FORCE |