mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
799f330f6d
Fixes #406. Suggested by nms42.
7 lines
150 B
Bash
Executable file
7 lines
150 B
Bash
Executable file
#!/bin/sh
|
|
|
|
u=`uname`
|
|
case "$u" in
|
|
Darwin)
|
|
sw_vers -productVersion | awk -F. '{printf("CFLAGS=$CFLAGS -DOSX_VERSION=%d%02d%02d\n", $1, $2, $3)}'
|
|
esac
|