[cig-commits] r20571 - short/3D/PyLith/pylith_installer/trunk

brad at geodynamics.org brad at geodynamics.org
Wed Aug 15 15:20:26 PDT 2012


Author: brad
Date: 2012-08-15 15:20:26 -0700 (Wed, 15 Aug 2012)
New Revision: 20571

Modified:
   short/3D/PyLith/pylith_installer/trunk/configure.ac
Log:
Fixed errors in setting with_PKG. Don't set to no if not install_PKG is false to allow use of system version.

Modified: short/3D/PyLith/pylith_installer/trunk/configure.ac
===================================================================
--- short/3D/PyLith/pylith_installer/trunk/configure.ac	2012-08-15 19:55:44 UTC (rev 20570)
+++ short/3D/PyLith/pylith_installer/trunk/configure.ac	2012-08-15 22:20:26 UTC (rev 20571)
@@ -214,8 +214,6 @@
 # NetCDF
 if test "$install_netcdf" = yes ; then
   with_netcdf=yes
-else
-  with_netcdf=no
 fi
 AC_ARG_WITH([netcdf],
     [AC_HELP_STRING([--with-netcdf],
@@ -227,21 +225,17 @@
 # HDF5
 if test "$install_hdf5" = "yes"; then
   with_hdf5=yes
-else
-  with_hdf5=no
 fi
 AC_ARG_WITH([hdf5],
     [AC_HELP_STRING([--with-hdf5],
         [enable HDF5 options for PyLith @<:@default=yes@:>@])],
-	[if test "$withval" = yes; then with_hdf5=yes; else with_hdf5=no; fi],
+	[echo "WITHVAL $withval"; if test "$withval" = yes; then with_hdf5=yes; else with_hdf5=no; fi],
 	[with_hdf5=yes])
 AM_CONDITIONAL([WITH_HDF5], [test "$with_hdf5" = yes])
 
 # H5PY
 if test "$install_h5py" = "yes"; then
   with_h5py=yes
-else
-  with_h5py=no
 fi
 AC_ARG_WITH([h5py],
     [AC_HELP_STRING([--with-h5py],



More information about the CIG-COMMITS mailing list