Index: BOL/script_install/install_lmdz_new.sh
===================================================================
--- BOL/script_install/install_lmdz_new.sh	(revision 4210)
+++ BOL/script_install/install_lmdz_new.sh	(revision 4211)
@@ -74,8 +74,7 @@
 
 getlmdzor=1
-netcdf=1   #  1 for automatic installation
-           #  0 for no installation
-           #  /.../../netcdf-4.0.1 if wanting to link with an already
-           #  compiled netcdf library (implies to check option compatibility)
+netcdf=0   #  1: for automatic installation;
+           #  or 0: do not install NetCDF and look for it in standard locations;
+           #  or absolute path: look for NetCDF there
 check_linux=1
 ioipsl=1
@@ -163,6 +162,8 @@
     -name      LOCAL_MODEL_NAME : default = LMDZversion.release
 
-    -netcdf    PATH : full path to an existing installed NetCDF library
-               (without -netcdf: also download and install the NetCDF library)
+    -netcdf    0, 1 or PATH
+    	       0: do not download NetCDF, look for it in standard locations
+	       1: download and compile NetCDF
+    	       PATH: full path to an existing installed NetCDF library
 
     -xios      also download and compile the XIOS library
@@ -305,4 +306,7 @@
 
    cicla|camel)   compiler="gfortran" ;
+	    module load netcdf4/4.3.3.1-gfortran;
+	    netcdf=/opt/netcdf43/gfortran
+
             if [ $parallel != none ] ; then
               module load openmpi/1.6.5-gfortran ;
@@ -609,10 +613,13 @@
 
 # ncdfdir contains the directory where netcdf is installed
-if [ $netcdf = 0 -o $netcdf = 1 ] ; then
+if [ $netcdf = 1 ] ; then
    if [ "$with_xios" = "y" ] ; then
       ncdfdir=$MODEL/netcdf4_hdf5
    else
-      ncdfdir=$MODEL/netcdf-4.0.1
+      ncdfdir=$MODEL/netcdf4_hdf5_seq
    fi
+elif [ $netcdf = 0 ]
+then
+     ncdfdir=/usr
 else
    ncdfdir=$netcdf
