From 1106dcec373c05abd67b98a11561aeddd449574b Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Wed, 8 Feb 2023 09:19:27 +0100 Subject: [PATCH] build/ports: of course it needs escape --- build/ports.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/ports.sh b/build/ports.sh index 2f1692e..21b71e9 100644 --- a/build/ports.sh +++ b/build/ports.sh @@ -169,7 +169,7 @@ UNAME_r=\$(freebsd-version) make -C ${PORTSDIR}/\${PORT} clean \${MAKE_ARGS} continue - elif ! CHECK_PLIST=$(make -C ${PORTSDIR}/\${PORT} check-plist \${MAKE_ARGS} 2>&1); then + elif ! CHECK_PLIST=\$(make -C ${PORTSDIR}/\${PORT} check-plist \${MAKE_ARGS} 2>&1); then echo ">>> Package list inconsistency for \${PORT_DESCR}" >> /.pkg-msg echo "\${CHECK_PLIST}" >> /.pkg-msg fi