We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70d672b commit 1542729Copy full SHA for 1542729
1 file changed
builds/linux-build.bash
@@ -54,7 +54,7 @@ source $MODULESHOME/init/bash
54
source $rootdir/$machine_name/$platform.env
55
56
# Default Makeflags
57
-makeflags="NETCDF=4"
+makeflags="-j NETCDF=4"
58
59
# Update makeflags based on the target
60
update_makeflags() {
@@ -85,7 +85,7 @@ build_libyaml() {
85
pushd $srcdir/libyaml
86
$srcdir/libyaml/bootstrap
87
$srcdir/libyaml/configure --prefix="$target_dir" --disable-shared
88
- make && make install
+ make -j && make install
89
if [ $? -ne 0 ]; then
90
echo "Could not build the libyaml library!"
91
exit 1
0 commit comments