1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 12:28:31 +03:00

Add new warning to help track down pesky compile issues

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4713 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mbm 2006-08-30 09:57:57 +00:00
parent 8c2d40d8fb
commit 91637acf54

View File

@ -27,10 +27,12 @@ define Build/DefaultTargets
endif
ifneq ($(MAKECMDGOALS),prereq)
ifneq ($$(_INFO),)
$$(info Rebuilding $$(_INFO))
endif
endif
endif
endif
$(PKG_BUILD_DIR)/.prepared:
@-rm -rf $(PKG_BUILD_DIR)
@ -129,6 +131,10 @@ define BuildPackage
ifneq ($(CONFIG_PACKAGE_$(1)),)
compile-targets: $$(IPKG_$(1))
else
compile-targets: $(1)-disabled
$(1)-disabled:
@echo "WARNING: skipping $(1) -- package not selected"
endif
endif