********>Bugfix 5: Author: Volodymyr Babin Date: 05/19/2008 Programs: ncsu-umbrella-slice Description: The ncsu-umbrella-slice/src/configure script always assumes that the argument of the --with-netcdf-prefix option is a relative path. Fix: apply the following patch in the ncsu-umbrella-slice subdirectory ------------------------------------------------------------------------------ Index: configure =================================================================== RCS file: /raid5/case/cvsroot/amber10/src/ncsu-umbrella-slice/configure,v retrieving revision 1.1 diff -c -r1.1 configure *** configure 18 Mar 2008 18:35:05 -0000 1.1 --- configure 20 May 2008 01:59:03 -0000 *************** *** 4130,4136 **** if test "${with_netcdf_prefix+set}" = set ; then case "$with_netcdf_prefix" in ! \\/* | ?:\\/*) # Absolute path; do nothing. ;; *) --- 4130,4136 ---- if test "${with_netcdf_prefix+set}" = set ; then case "$with_netcdf_prefix" in ! [\\/]* | ?:[\\/]*) # Absolute path; do nothing. ;; *) Index: cox308-netCDF.m4 =================================================================== RCS file: /raid5/case/cvsroot/amber10/src/ncsu-umbrella-slice/cox308-netCDF.m4,v retrieving revision 1.1 diff -c -r1.1 cox308-netCDF.m4 *** cox308-netCDF.m4 18 Mar 2008 18:35:05 -0000 1.1 --- cox308-netCDF.m4 20 May 2008 01:59:03 -0000 *************** *** 17,23 **** if test "${with_netcdf_prefix+set}" = set ; then case "$with_netcdf_prefix" in ! [\\/]* | ?:[\\/]*) # Absolute path; do nothing. ;; *) --- 17,23 ---- if test "${with_netcdf_prefix+set}" = set ; then case "$with_netcdf_prefix" in ! [[\\/]]* | ?:[[\\/]]*) # Absolute path; do nothing. ;; *) ------------------------------------------------------------------------------ Temporary workarounds: do not build ncsu-umbrella-slice which is rarely used.