Skip to content
Snippets Groups Projects
Commit c5805c82 authored by Ian Lynagh's avatar Ian Lynagh
Browse files

#1559 is worked around elsewhere, so validate no longer needs to

parent 81b2276f
No related branches found
No related tags found
No related merge requests found
...@@ -27,13 +27,9 @@ case $OSTYPE in ...@@ -27,13 +27,9 @@ case $OSTYPE in
esac esac
if [ "$CPUS" = "" ]; then if [ "$CPUS" = "" ]; then
# ToDo: make -j doesn't work in libraries/ on Windows (see #1559) threads=2
case $OSTYPE in
cygwin|msys) threads=1;;
*) threads=2;;
esac
else else
threads=`expr $CPUS + 1` threads=`expr $CPUS + 1`
fi fi
sh boot sh boot
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment