Makefile: Update error if building real-all when NOCOMPILE is set
The real-all target here had never been updated since the original NOCOMPILE, which only depended on DOTCONFIG. Since the reasons that the NOCOMPILE flag can be set is much larger now, the error given no longer matches the possible issues. Give the reason for the failure (nocompile is set), some debug info, and ask the user to file a bug. We shouldn't really ever run across this, but I just saw it when I was working on the NOCOMPILE code. Signed-off-by: Martin Roth <gaumless@gmail.com> Change-Id: I5b4be3349fb4cf2d3a8a2a7c183b7a205b9e8733 Reviewed-on: https://review.coreboot.org/c/coreboot/+/65319 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
This commit is contained in:
parent
f6abb9ef8d
commit
e28c71802d
8
Makefile
8
Makefile
|
@ -136,9 +136,11 @@ include $(TOPLEVEL)/util/testing/Makefile.inc
|
||||||
-include $(TOPLEVEL)/site-local/Makefile.inc
|
-include $(TOPLEVEL)/site-local/Makefile.inc
|
||||||
include $(TOPLEVEL)/tests/Makefile.inc
|
include $(TOPLEVEL)/tests/Makefile.inc
|
||||||
real-all:
|
real-all:
|
||||||
@echo "Error: Expected config file ($(DOTCONFIG)) not present." >&2
|
@echo "Error: Trying to build, but NOCOMPILE is set." >&2
|
||||||
@echo "Please specify a config file or run 'make menuconfig' to" >&2
|
@echo " Please file a bug with the following information:"
|
||||||
@echo "generate a new config file." >&2
|
@echo "- MAKECMDGOALS: $(MAKECMDGOALS)" >&2
|
||||||
|
@echo "- HAVE_DOTCONFIG: $(HAVE_DOTCONFIG)" >&2
|
||||||
|
@echo "- HAVE_KCONFIG_MAKEFILE_REAL: $(HAVE_KCONFIG_MAKEFILE_REAL)" >&2
|
||||||
@exit 1
|
@exit 1
|
||||||
else
|
else
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue