1
0
mirror of https://git.freebsd.org/ports.git synced 2026-06-02 11:08:52 +00:00

Wrappers/gm4: Quote $@ correctly

Approved by:	portmgr blanket
This commit is contained in:
Mateusz Piotrowski
2025-06-23 17:38:02 +02:00
parent 0b327e8da4
commit f8730e99e6
+1 -1
View File
@@ -2,5 +2,5 @@
case " $@ " in
*" --version "*) echo "m4 (GNU M4) 1.4.18" ;;
*) exec m4 -g $@ ;;
*) exec m4 -g "$@" ;;
esac