diff options
author | Felix Singer <felixsinger@posteo.net> | 2023-04-05 22:15:18 +0200 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-08-21 17:49:53 +0000 |
commit | 806951a1bcb1c2a31d9eecaaafd6c2a193e90029 (patch) | |
tree | bbfb6e3820326753b0a1adf66e2a80b8c9e4908f /util/testing | |
parent | 536bb0bebcc02094cf3b7ee66fb89ee83e6e1267 (diff) |
util/testing/Makefile.inc: Add missing dash to scanbuild switch
The test-abuild target fails since the `scan-build` switch is missing a
dash. Fix it.
Change-Id: Iae10f639c43fed7709698e620e732cddce5658d8
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74240
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'util/testing')
-rw-r--r-- | util/testing/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/testing/Makefile.inc b/util/testing/Makefile.inc index 0e4cad60da..4bc4cdf33c 100644 --- a/util/testing/Makefile.inc +++ b/util/testing/Makefile.inc @@ -117,7 +117,7 @@ test-lint: 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) $(CCACHE_OPTIONS) -x --name $${NAME} --clean |