1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-12 01:00:16 +02:00

fix unnecessary kernel package recompile

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5227 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2006-10-19 06:38:06 +00:00
parent 043ac6c8ed
commit 2b15bcf20e

View File

@ -256,16 +256,18 @@ define BuildPackage
$$(eval $$(call Build/DefaultTargets,$(1))) $$(eval $$(call Build/DefaultTargets,$(1)))
ifneq ($$(CONFIG_PACKAGE_$(1)),) ifdef Package/$(1)/install
ifneq ($(MAKECMDGOALS),prereq) ifneq ($$(CONFIG_PACKAGE_$(1)),)
ifneq ($(DUMP),1) ifneq ($(MAKECMDGOALS),prereq)
ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg -x ipkg-install '$$(IPKG_$(1))' '$(PKG_BUILD_DIR)'),$$(IPKG_$(1))) ifneq ($(DUMP),1)
_INFO+=$(subst $(TOPDIR)/,,$$(IPKG_$(1))) ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg -x ipkg-install '$$(IPKG_$(1))' '$(PKG_BUILD_DIR)'),$$(IPKG_$(1)))
$(PKG_BUILD_DIR)/.built: package-rebuild _INFO+=$(subst $(TOPDIR)/,,$$(IPKG_$(1)))
endif $(PKG_BUILD_DIR)/.built: package-rebuild
endif
ifneq ($$(_INFO),) ifneq ($$(_INFO),)
$$(info Rebuilding $$(_INFO)) $$(info Rebuilding $$(_INFO))
endif
endif endif
endif endif
endif endif