Index: /issm/trunk/externalpackages/slepc/install.sh
===================================================================
--- /issm/trunk/externalpackages/slepc/install.sh	(revision 1513)
+++ /issm/trunk/externalpackages/slepc/install.sh	(revision 1514)
@@ -2,5 +2,5 @@
 
 #Get number of cpus on current platform
-NUMCPUS=`grep -c processor /proc/cpuinfo`;
+NUMCPUS=$1;
 
 #version of slepc
@@ -23,3 +23,8 @@
 cd install
 ./config/configure.py
-make  -j $NUMCPUS
+if [ -z $NUMCPUS ];
+then
+	  make
+else
+	  make  -j $NUMCPUS
+fi
