1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00
freebsd-ports/Mk/Wrappers/gm4
Mathieu Arnold 5d33e04596
framework: Remove $FreeBSD$
Where appropriate fiddle with a few other things.
2021-04-06 16:27:10 +02:00

7 lines
97 B
Bash

#!/bin/sh
case " $@ " in
*" --version "*) echo "m4 (GNU M4) 1.4.18" ;;
*) exec m4 -g $@ ;;
esac