1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-25 08:51:09 +02:00

don't run rebuild checks for dump and prereq

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4771 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2006-09-07 16:48:03 +00:00
parent de399b7bdf
commit 82453564bc

View File

@ -237,17 +237,19 @@ define BuildPackage
$$(eval $$(call Build/DefaultTargets,$(1))) $$(eval $$(call Build/DefaultTargets,$(1)))
ifneq ($$(CONFIG_PACKAGE_$(1)),) ifneq ($$(CONFIG_PACKAGE_$(1)),)
ifneq ($(MAKECMDGOALS),prereq)
ifneq ($(DUMP),1)
ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg -x ipkg-install $$(IPKG_$(1)) $(PKG_BUILD_DIR)),$$(IPKG_$(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))) _INFO+=$(subst $(TOPDIR)/,,$$(IPKG_$(1)))
$(PKG_BUILD_DIR)/.built: package-rebuild $(PKG_BUILD_DIR)/.built: package-rebuild
endif endif
ifneq ($(MAKECMDGOALS),prereq)
ifneq ($$(_INFO),) ifneq ($$(_INFO),)
$$(info Rebuilding $$(_INFO)) $$(info Rebuilding $$(_INFO))
endif endif
endif endif
endif endif
endif
endef endef
ifneq ($(strip $(PKG_CAT)),) ifneq ($(strip $(PKG_CAT)),)