summaryrefslogtreecommitdiff
path: root/VERSIONS
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-03-23 18:36:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-03-23 18:36:43 +0000
commitc7a2d490351b8df4cf5950e456a0d5093e9a8fac (patch)
tree5e939019811c83fb4bbdf6bf68c4ba50d54e9f28 /VERSIONS
parentac1e64512931b2a8ded2036eeafe14fed491e4de (diff)
2010-03-23 Joel Sherrill <joel.sherrilL@OARcorp.com>
* VERSIONS: Probe for parallelism.
Diffstat (limited to 'VERSIONS')
-rw-r--r--VERSIONS12
1 files changed, 2 insertions, 10 deletions
diff --git a/VERSIONS b/VERSIONS
index 95a1865..8e7223b 100644
--- a/VERSIONS
+++ b/VERSIONS
@@ -45,13 +45,5 @@ case `hostname` in
;;
esac
-# Specify the desired parallelism based upon the host name.
-# TODO: It would be good to probe to figure this out.
-case `hostname` in
- rtbf32|rtbf64)
- MAKEJOBS="-j3"
- ;;
- *)
- MAKEJOBS="-j3"
- ;;
-esac
+# Specify the desired parallelism
+MAKEJOBS=`/usr/bin/getconf _NPROCESSORS_ONLN`