From c5805c8232bd3ece535e78c86c72bddec05bb975 Mon Sep 17 00:00:00 2001
From: Ian Lynagh <igloo@earth.li>
Date: Mon, 30 Jul 2007 18:28:06 +0000
Subject: [PATCH] #1559 is worked around elsewhere, so validate no longer needs
 to

---
 validate | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/validate b/validate
index 42bb9b5720b..1852358da6a 100644
--- a/validate
+++ b/validate
@@ -27,13 +27,9 @@ case $OSTYPE in
 esac
 
 if [ "$CPUS" = "" ]; then
-   # ToDo: make -j doesn't work in libraries/ on Windows (see #1559)
-   case $OSTYPE in
-       cygwin|msys) threads=1;;
-       *)           threads=2;;
-   esac
+    threads=2
 else
-   threads=`expr $CPUS + 1`
+    threads=`expr $CPUS + 1`
 fi
 
 sh boot
-- 
GitLab