Fixed bug due to typo in cpu detection code, thanx to dixlor
This commit is contained in:
parent
ed7345473e
commit
5aff823e98
|
@ -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" ]
|
||||
|
|
Loading…
Reference in New Issue