git: f8730e99e640 - main - Wrappers/gm4: Quote $@ correctly
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 14 Jul 2025 21:29:37 UTC
The branch main has been updated by 0mp:
URL: https://cgit.FreeBSD.org/ports/commit/?id=f8730e99e640cf286689c339b95d202f16da665c
commit f8730e99e640cf286689c339b95d202f16da665c
Author: Mateusz Piotrowski <0mp@FreeBSD.org>
AuthorDate: 2025-06-23 15:38:02 +0000
Commit: Mateusz Piotrowski <0mp@FreeBSD.org>
CommitDate: 2025-07-14 21:28:58 +0000
Wrappers/gm4: Quote $@ correctly
Approved by: portmgr blanket
---
Mk/Wrappers/gm4 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Mk/Wrappers/gm4 b/Mk/Wrappers/gm4
index ecc0796c729a..8b1e7a64f700 100644
--- a/Mk/Wrappers/gm4
+++ b/Mk/Wrappers/gm4
@@ -2,5 +2,5 @@
case " $@ " in
*" --version "*) echo "m4 (GNU M4) 1.4.18" ;;
-*) exec m4 -g $@ ;;
+*) exec m4 -g "$@" ;;
esac