Date: Sat, 28 Aug 2021 08:58:10 GMT From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 0cf3e3b7fec4 - main - math/cglm: fix inheritance of old MESON_ARGS Message-ID: <202108280858.17S8wA43078038@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by jbeich: URL: https://cgit.FreeBSD.org/ports/commit/?id=0cf3e3b7fec401cfc316e42809d2f5696a899839 commit 0cf3e3b7fec401cfc316e42809d2f5696a899839 Author: Jan Beich <jbeich@FreeBSD.org> AuthorDate: 2021-08-28 08:53:58 +0000 Commit: Jan Beich <jbeich@FreeBSD.org> CommitDate: 2021-08-28 08:57:30 +0000 math/cglm: fix inheritance of old MESON_ARGS This port doesn't set MESON_ARGS, so the effect is cosmetic. Mainly to avoid bugs in case pre-test is copied to other ports. --- math/cglm/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/cglm/Makefile b/math/cglm/Makefile index 224003824464..75588a6827ea 100644 --- a/math/cglm/Makefile +++ b/math/cglm/Makefile @@ -19,7 +19,7 @@ GH_ACCOUNT= recp pre-test: @if [ ! -e ${WRKDIR}/.meson_build_testing ]; then \ ${RM} ${CONFIGURE_COOKIE} ${BUILD_COOKIE}; \ - ${MAKE} -C${.CURDIR} build MESON_ARGS="`make -V MESON_ARGS` --reconfigure -Dbuild_tests=true"; \ + ${MAKE} -C${.CURDIR} build MESON_ARGS="${MESON_ARGS} --reconfigure -Dbuild_tests=true"; \ ${TOUCH} ${WRKDIR}/.meson_build_testing; \ fi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108280858.17S8wA43078038>