plan9port/src/cmd/9pfuse/osxvers
2009-04-30 08:01:33 -07:00

7 lines
177 B
Bash
Executable file

#!/bin/sh
u=`uname`
case "$u" in
Darwin)
sw_vers | awk '$1 == "ProductVersion:" {print $2}' | awk -F. '{printf("CFLAGS=$CFLAGS -DOSX_VERSION=%d%02d%02d\n", $1, $2, $3)}'
esac