Date: Wed, 9 Feb 2022 03:20:26 GMT From: Ed Maste <emaste@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: d940e9412148 - main - bmake: make opt-debug-x-trace broken on Linux Message-ID: <202202090320.2193KQ8u093054@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=d940e9412148a06f28338d39ace0a38de16a8228 commit d940e9412148a06f28338d39ace0a38de16a8228 Author: Ed Maste <emaste@FreeBSD.org> AuthorDate: 2022-02-09 01:18:04 +0000 Commit: Ed Maste <emaste@FreeBSD.org> CommitDate: 2022-02-09 03:19:59 +0000 bmake: make opt-debug-x-trace broken on Linux It fails during GitHub cross-build actions from Ubuntu 20.04. sjg investigated and found it is a dash bug; a more extensive change to handle this case will come in the next bmake update. Reviewed by: sjg Differential Revision: https://reviews.freebsd.org/D34219 --- contrib/bmake/unit-tests/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/bmake/unit-tests/Makefile b/contrib/bmake/unit-tests/Makefile index 2a300133eccc..537525d879b2 100644 --- a/contrib/bmake/unit-tests/Makefile +++ b/contrib/bmake/unit-tests/Makefile @@ -441,6 +441,9 @@ TESTS+= varquote .if ${.SHELL:T} == "ksh" BROKEN_TESTS+= sh-flags .endif +.if ${.MAKE.OS} == "Linux" +BROKEN_TESTS+= opt-debug-x-trace +.endif .if ${.MAKE.OS:NDarwin} == "" BROKEN_TESTS+= shell-ksh .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202202090320.2193KQ8u093054>