Index: /issm/trunk-jpl/etc/environment.sh
===================================================================
--- /issm/trunk-jpl/etc/environment.sh	(revision 24387)
+++ /issm/trunk-jpl/etc/environment.sh	(revision 24388)
@@ -4,4 +4,9 @@
 # ISSM_DIR and ISSM_ARCH should have been defined already in your shell
 # settings file (i.e. .bashrc, .cshrc).
+#
+# TODO:
+# - Condition all path modifications on existence of external package 'install'
+#	directory
+#
 
 ## Functions
@@ -159,9 +164,4 @@
 	fi
 } #}}}
-
-# FIXME: during installation packages are installed one by one but
-# environment.sh was sourced before so new packages are NOT in the path. May
-# source environment.sh again with:
-# 	if [ -z $(echo "$PATH" | grep "$MATLAB_DIR") ]; then export $PATH...; fi
 
 # Windows compilers:
@@ -437,7 +437,10 @@
 
 #CURL
-ld_library_path_prepend "${ISSM_DIR}/externalpackages/curl/install/lib"
-dyld_library_path_prepend "${ISSM_DIR}/externalpackages/curl/install/lib"
-path_prepend "${ISSM_DIR}/externalpackages/curl/install/bin"
+CURL_DIR="${ISSM_DIR}/externalpackages/curl/install"
+if [ -d "${CURL_DIR}" ]; then
+	ld_library_path_prepend "${CURL_DIR}/lib"
+	dyld_library_path_prepend "${CURL_DIR}/lib"
+	path_prepend "${CURL_DIR}/bin"
+fi
 
 #NEOPZ
Index: /issm/trunk-jpl/externalpackages/gmt/configs/Linux/cmake/ConfigUser.cmake
===================================================================
--- /issm/trunk-jpl/externalpackages/gmt/configs/Linux/cmake/ConfigUser.cmake	(revision 24387)
+++ /issm/trunk-jpl/externalpackages/gmt/configs/Linux/cmake/ConfigUser.cmake	(revision 24388)
@@ -136,5 +136,5 @@
 # Set location of NetCDF (can be root directory, path to header file or path
 # to nc-config) [auto]:
-set (NETCDF_ROOT "$ENV{ISSM_DIR}/externalpackages/petsc/install")
+set (NETCDF_ROOT "$ENV{ISSM_DIR}/externalpackages/netcdf/install")
 
 # Set location of GDAL (can be root directory, path to header file or path to
Index: /issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel-with_tests.sh
===================================================================
--- /issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel-with_tests.sh	(revision 24387)
+++ /issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel-with_tests.sh	(revision 24388)
@@ -41,5 +41,4 @@
 ./configure \
  	--prefix="${ISSM_DIR}/externalpackages/netcdf/install" \
- 	--disbable-shared \
  	--enable-parallel-tests \
  	--disable-doxygen
Index: /issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel.sh
===================================================================
--- /issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel.sh	(revision 24387)
+++ /issm/trunk-jpl/externalpackages/netcdf/install-4.7-parallel.sh	(revision 24388)
@@ -41,5 +41,4 @@
 ./configure \
  	--prefix="${ISSM_DIR}/externalpackages/netcdf/install" \
- 	--disable-shared \
  	--disable-doxygen
 
Index: /issm/trunk-jpl/jenkins/linux64_ross_se
===================================================================
--- /issm/trunk-jpl/jenkins/linux64_ross_se	(revision 24387)
+++ /issm/trunk-jpl/jenkins/linux64_ross_se	(revision 24388)
@@ -48,6 +48,6 @@
 	cmake		install.sh
 	mpich		install-3.2-linux64.sh
-	hdf5		install-1.10.sh
-	netcdf		install-4.7.sh
+	hdf5		install-1.10-parallel.sh
+	netcdf		install-4.7-parallel.sh
 	lapack		install-3.8-linux.sh
 	petsc		install-3.7-linux64.sh
@@ -80,5 +80,5 @@
 # NOTE: Possible problem of access to all_vertices.txt if more than 1.
 #
-NUMCPUS_RUN=1
+NUMCPUS_RUN=8
 
 #Nightly run options. The matlab routine runme.m will be called
