From 0e22d6377569cea4ba00b81d6ec64a1582a2cea4 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 22 Jan 2017 17:40:29 +0100 Subject: build: fix CONFIG_AUTOREMOVE for packages with multiple variants Calling the clean target removes all .ipk files and un-stages the package. Add a new target just for clearing the build dir and call that one instead of the full clean target Signed-off-by: Felix Fietkau --- include/package.mk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'include/package.mk') diff --git a/include/package.mk b/include/package.mk index 95b5f76dc3..fc2733907e 100644 --- a/include/package.mk +++ b/include/package.mk @@ -300,12 +300,14 @@ compile: prepare-package-install .install: .compile install: compile -clean: FORCE +clean-build: FORCE + rm -rf $(PKG_BUILD_DIR) + +clean: clean-build $(CleanStaging) $(call Build/UninstallDev,$(STAGING_DIR),$(STAGING_DIR_HOST)) $(Build/Clean) rm -f $(STAGING_DIR)/packages/$(STAGING_FILES_LIST) $(STAGING_DIR_HOST)/packages/$(STAGING_FILES_LIST) - rm -rf $(PKG_BUILD_DIR) dist: $(Build/Dist) -- cgit v1.2.3