aboutsummaryrefslogtreecommitdiff
path: root/bin/osxvers
diff options
context:
space:
mode:
Diffstat (limited to 'bin/osxvers')
-rwxr-xr-xbin/osxvers2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/osxvers b/bin/osxvers
index 4af44da2..6ebeb11f 100755
--- a/bin/osxvers
+++ b/bin/osxvers
@@ -3,5 +3,5 @@
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)}'
+ sw_vers -productVersion | awk -F. '{printf("CFLAGS=$CFLAGS -DOSX_VERSION=%d%02d%02d\n", $1, $2, $3)}'
esac