Fixed bug due to typo in cpu detection code, thanx to dixlor

This commit is contained in:
Louwrentius 2009-01-11 21:03:34 +00:00
parent 9d00f7bc0c
commit d55bbac0f9
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ get_no_of_cpus () {
then
if [ `uname` == "Linux" ]
then
NUMBER=`cat /proc/cpuinfoo | grep processor | wc -l`
NUMBER=`cat /proc/cpuinfo | grep processor | wc -l`
got_cpu_info "$?"
elif [ `uname` == "Darwin" ]