mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
5d33e04596
Where appropriate fiddle with a few other things.
7 lines
97 B
Bash
7 lines
97 B
Bash
#!/bin/sh
|
|
|
|
case " $@ " in
|
|
*" --version "*) echo "m4 (GNU M4) 1.4.18" ;;
|
|
*) exec m4 -g $@ ;;
|
|
esac
|