Add new warning to help track down pesky compile issues
SVN-Revision: 4713
This commit is contained in:
parent
d61fa4ec2a
commit
172e5eb67e
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue