diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-14 23:17:32 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-14 23:17:32 (GMT) |
commit | e7612be4887d7adb0fb2fd42a291693e30e96974 (patch) | |
tree | f4df36ef9c6a7c2fe737be1f3ace8964c177e26b /fortran/configure | |
parent | e558d37f0fca58c332b3d0b102deab09e376e69b (diff) | |
download | hdf5-e7612be4887d7adb0fb2fd42a291693e30e96974.zip hdf5-e7612be4887d7adb0fb2fd42a291693e30e96974.tar.gz hdf5-e7612be4887d7adb0fb2fd42a291693e30e96974.tar.bz2 |
[svn-r2905] Purpose:
Bug
Description:
Applied the DYNAMIC_DIRS patch to this configure file. It was
applied to the hdf5 stuff but didn't make it down here.
Diffstat (limited to 'fortran/configure')
-rwxr-xr-x | fortran/configure | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/fortran/configure b/fortran/configure index 55991d4..13f5512 100755 --- a/fortran/configure +++ b/fortran/configure @@ -2646,13 +2646,17 @@ rm -f conftest core core.* *.core conftest.o conftest.c dummy.o $ac_clean_files DYNAMIC_DIRS="" if test -n "$LDFLAGS"; then for d in $LDFLAGS ; do - d=`echo $d | sed -e 's/-L//g'` case "$d" in - .*) - d=${ROOT}/$d + -L*) + d=`echo $d | sed -e 's/-L//g'` + case "$d" in + .*) + d=${ROOT}/$d + ;; + esac + DYNAMIC_DIRS="-R${d} $DYNAMIC_DIRS" ;; esac - DYNAMIC_DIRS="-R${d} $DYNAMIC_DIRS" done fi |