fix unnecessary rebuilds for library package directories with no selected packages
SVN-Revision: 4767
This commit is contained in:
parent
f064d2375b
commit
550bdc5f80
1 changed files with 14 additions and 11 deletions
|
@ -21,16 +21,6 @@ define Build/DefaultTargets
|
|||
$(PKG_BUILD_DIR)/.prepared: package-clean
|
||||
endif
|
||||
|
||||
ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg -x ipkg-install $(IPKG_$(1)) $(PKG_BUILD_DIR)),$(IPKG_$(1)))
|
||||
_INFO+=$(subst $(TOPDIR)/,,$(IPKG_$(1)))
|
||||
$(PKG_BUILD_DIR)/.built: package-rebuild
|
||||
endif
|
||||
|
||||
ifneq ($(MAKECMDGOALS),prereq)
|
||||
ifneq ($$(_INFO),)
|
||||
$$(info Rebuilding $$(_INFO))
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
|
@ -241,6 +231,19 @@ define BuildPackage
|
|||
@touch $$@
|
||||
|
||||
$$(eval $$(call Build/DefaultTargets,$(1)))
|
||||
|
||||
ifneq ($$(CONFIG_PACKAGE_$(1)),)
|
||||
ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg -x ipkg-install $$(IPKG_$(1)) $(PKG_BUILD_DIR)),$$(IPKG_$(1)))
|
||||
_INFO+=$(subst $(TOPDIR)/,,$$(IPKG_$(1)))
|
||||
$(PKG_BUILD_DIR)/.built: package-rebuild
|
||||
endif
|
||||
|
||||
ifneq ($(MAKECMDGOALS),prereq)
|
||||
ifneq ($$(_INFO),)
|
||||
$$(info Rebuilding $$(_INFO))
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endef
|
||||
|
||||
ifneq ($(strip $(PKG_CAT)),)
|
||||
|
|
Loading…
Reference in a new issue