wmakeLnIncludeAll: Corrected type

This commit is contained in:
Henry Weller
2016-07-04 10:27:43 +01:00
parent 9e712bbfc7
commit 91a8421241

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 ))