X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/3049bd132af7162a179c8d29f3fc068db8e84f38..e5a6579b59a0a071a183113be6a7ca44a2268fc6:/package/Makefile diff --git a/package/Makefile b/package/Makefile index 17233bbbf..c3fc01c7d 100644 --- a/package/Makefile +++ b/package/Makefile @@ -16,7 +16,7 @@ include $(TMP_DIR)/.packagedeps PREREQ_PACKAGES:=$(patsubst %,%-prereq,$(prereq-y) $(prereq-m)) DOWNLOAD_PACKAGES:=$(patsubst %,%-download,$(package-y) $(package-m)) -COMPILE_PACKAGES:=$(patsubst %,%-compile,$(package-m)) +COMPILE_PACKAGES:=$(patsubst %,%-compile,$(package-y) $(package-m)) INSTALL_PACKAGES:=$(patsubst %,%-install,$(package-y)) $(STAMP_DIR) $(TARGET_DIR): @@ -26,9 +26,9 @@ ifeq ($(QUIET),1) %-compile %-install: FORCE $(MAKE) -C $* $(patsubst $*-%,%,$@) || { $(call MESSAGE, "*** $* $(patsubst $*-%,%,$@) failed"); false; } -%-prereq %-download %-clean: FORCE +%-prepare %-prereq %-download %-clean: FORCE else -%-prereq %-download %-clean %-compile %-install: FORCE +%-prepare %-prereq %-download %-clean %-compile %-install: FORCE endif $(MAKE) -C $* $(patsubst $*-%,%,$@) @@ -58,6 +58,9 @@ install: IPKG_INSTROOT=$(BUILD_DIR)/root $(which bash) ./etc/rc.common $$script enable; \ done || true \ ) + @-find $(BUILD_DIR)/root -name CVS | $(XARGS) rm -rf + @-find $(BUILD_DIR)/root -name .svn | $(XARGS) rm -rf + @-find $(BUILD_DIR)/root -name '.#*' | $(XARGS) rm -f index: $(PACKAGE_DIR)/Packages