osx InstallationCheck script: use full path for sysctl.
Thanks to jonahbull for the suggestion. Closes #580.
This commit is contained in:
parent
cae409725f
commit
e460ab2894
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue