osx InstallationCheck script: use full path for sysctl.

Thanks to jonahbull for the suggestion.  Closes #580.
This commit is contained in:
John MacFarlane 2013-02-24 14:05:53 -08:00
parent cae409725f
commit e460ab2894

View file

@ -1,6 +1,6 @@
#!/bin/sh
cputype=`sysctl -n hw.cputype`
sixtyfourbit=`sysctl -n hw.cpu64bit_capable`
cputype=`/usr/sbin/sysctl -n hw.cputype`
sixtyfourbit=`/usr/sbin/sysctl -n hw.cpu64bit_capable`
if [ "x$cputype" != "x7" ] # x86
then