Index: BOL/script_install/install_lmdz.sh
===================================================================
--- BOL/script_install/install_lmdz.sh	(revision 5566)
+++ BOL/script_install/install_lmdz.sh	(revision 5567)
@@ -433,6 +433,6 @@
         echo "install_lmdz.sh wget_OK $(date)"
 
-        gunzip "modipsl.$version.tar.gz" &>> get.log
-        tar xf "modipsl.$version.tar" &>> get.log
+        gunzip "modipsl.$version.tar.gz" &>> $getlog
+        tar xf "modipsl.$version.tar" &>> $getlog
         rm "modipsl.$version.tar"
     fi
@@ -649,9 +649,11 @@
     fi
 
-    # Compile NetCDF95
+    # Install and compile NetCDF95 in $MODEL, next to modipsl, 
+    #  except for Jean-Zay, for which netcdf95 is loaded as a module in the arch*.env
     cd "$MODEL/modipsl/modeles/LMD"*
-    echo "Installing NetCDF95"
-    cd "$MODEL"
-    if [[ ! -d "NetCDF95-0.3" ]]; then
+    if [[ $(hostname | cut -c -5) != "jean-" ]]; then
+      echo "Installing NetCDF95"
+      cd "$MODEL"
+      if [[ ! -d "NetCDF95-0.3" ]]; then
         myget src_archives/netcdf/NetCDF95-0.3.tar.gz
         tar -xf NetCDF95-0.3.tar.gz
@@ -660,6 +662,8 @@
         mkdir -p build && cd build
         netCDF_INCLUDE_DIR=$(nc-config --includedir) netCDF_LIBRARY=$(nc-config --libdir) cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH="$ncdfdir" -DCMAKE_INSTALL_PREFIX="$MODEL/modipsl"
-        make install
-    fi
+      make install
+      fi
+    fi
+
 }
 
