Skip to content

Commit

Permalink
osx InstallationCheck script: use full path for sysctl.
Browse files Browse the repository at this point in the history
Thanks to jonahbull for the suggestion.  Closes #580.
  • Loading branch information
John MacFarlane committed Feb 24, 2013
1 parent cae4097 commit e460ab2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osx-resources/InstallationCheck
@@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
cputype=`sysctl -n hw.cputype` cputype=`/usr/sbin/sysctl -n hw.cputype`
sixtyfourbit=`sysctl -n hw.cpu64bit_capable` sixtyfourbit=`/usr/sbin/sysctl -n hw.cpu64bit_capable`


if [ "x$cputype" != "x7" ] # x86 if [ "x$cputype" != "x7" ] # x86
then then
Expand Down

0 comments on commit e460ab2

Please sign in to comment.