mirror of
https://git.freebsd.org/ports.git
synced 2026-06-02 11:08:52 +00:00
f8730e99e6
Approved by: portmgr blanket
7 lines
99 B
Bash
7 lines
99 B
Bash
#!/bin/sh
|
|
|
|
case " $@ " in
|
|
*" --version "*) echo "m4 (GNU M4) 1.4.18" ;;
|
|
*) exec m4 -g "$@" ;;
|
|
esac
|