wmakeLnIncludeAll: Corrected type

This commit is contained in:
Henry Weller 2016-07-04 10:27:43 +01:00
parent 911e424515
commit 23877413f3

View file

@ -117,7 +117,7 @@ do
then
# If running in parallel start wmakeLnInclude on nCores
# and more as the cores become free
if [ "$nCores" > 0 ]
if [ "$nCores" -gt 0 ]
then
joblist=($(jobs -p))
while (( ${#joblist[*]} > $nCores ))