diff options
Diffstat (limited to 'include/package.mk')
-rw-r--r-- | include/package.mk | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/include/package.mk b/include/package.mk index 6e24788a58..95b5f76dc3 100644 --- a/include/package.mk +++ b/include/package.mk @@ -96,6 +96,8 @@ include $(INCLUDE_DIR)/package-ipkg.mk include $(INCLUDE_DIR)/package-bin.mk include $(INCLUDE_DIR)/autotools.mk +_pkg_target:=$(if $(QUILT),,.) + override MAKEFLAGS= CONFIG_SITE:=$(INCLUDE_DIR)/site/$(ARCH) CUR_MAKEFILE:=$(filter-out Makefile,$(firstword $(MAKEFILE_LIST))) @@ -204,13 +206,13 @@ define Build/CoreTargets touch $$@ ifdef Build/InstallDev - .compile: $(STAMP_INSTALLED) + $(_pkg_target)compile: $(STAMP_INSTALLED) endif - .prepare: $(STAMP_PREPARED) - .configure: $(STAMP_CONFIGURED) - .dist: $(STAMP_CONFIGURED) - .distcheck: $(STAMP_CONFIGURED) + $(_pkg_target)prepare: $(STAMP_PREPARED) + $(_pkg_target)configure: $(STAMP_CONFIGURED) + $(_pkg_target)dist: $(STAMP_CONFIGURED) + $(_pkg_target)distcheck: $(STAMP_CONFIGURED) ifneq ($(CONFIG_AUTOREMOVE),) compile: |