Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/74240 )
Change subject: util/testing/Makefile.inc: Fix typo in parameter ......................................................................
util/testing/Makefile.inc: Fix typo in parameter
The test-abuild target fails since a parameter used for scan-build is missing a dash. Fix it.
Change-Id: Iae10f639c43fed7709698e620e732cddce5658d8 Signed-off-by: Felix Singer felixsinger@posteo.net --- M util/testing/Makefile.inc 1 file changed, 14 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/40/74240/1
diff --git a/util/testing/Makefile.inc b/util/testing/Makefile.inc index ff55df0..528b7ec 100644 --- a/util/testing/Makefile.inc +++ b/util/testing/Makefile.inc @@ -116,7 +116,7 @@
test-abuild: ifneq ($(JENKINS_SKIP_SCANBUILD_TEST),y) - NAME=scanbuild; SCANBUILD_ARGS='-k -plist-html -maxloop 10' util/abuild/abuild -o $(COREBOOT_BUILD_DIR)/$${NAME} $(ABUILD_OPTIONS) -scan-build --target EMULATION_QEMU_X86_Q35 --exitcode --name $${NAME} + NAME=scanbuild; SCANBUILD_ARGS='-k -plist-html -maxloop 10' util/abuild/abuild -o $(COREBOOT_BUILD_DIR)/$${NAME} $(ABUILD_OPTIONS) --scan-build --target EMULATION_QEMU_X86_Q35 --exitcode --name $${NAME} endif ifneq ($(JENKINS_SKIP_GCC_TESTS),y) NAME=gcc-chromeos; util/abuild/abuild -o $(COREBOOT_BUILD_DIR)/$${NAME} $(ABUILD_OPTIONS) -x --name $${NAME} --clean