diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-08 16:57:24 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-08 16:57:24 (GMT) |
commit | b1ea50c0462bfb898480dabd3649cbdcc6c5e7e6 (patch) | |
tree | 9ba2f7635ec385470d766adab024f6eeae866601 /configure.in | |
parent | 22aa01180de35d401b50b3229bbf7c453806cbc1 (diff) | |
download | hdf5-b1ea50c0462bfb898480dabd3649cbdcc6c5e7e6.zip hdf5-b1ea50c0462bfb898480dabd3649cbdcc6c5e7e6.tar.gz hdf5-b1ea50c0462bfb898480dabd3649cbdcc6c5e7e6.tar.bz2 |
[svn-r2813] Purpose:
Buglet
Description:
Wasn't picking up specified directories for the run-time linking
stuff that libtools does.
Solution:
There was some confusion about how the regex stuff works with
scripts. It's not `.*' for any character by `*'...Fixed.
Platforms tested:
Arabica
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 74d5125..35b2f7d 100644 --- a/configure.in +++ b/configure.in @@ -505,13 +505,11 @@ case "$withval" in *) zlib_inc="`echo $withval |cut -f1 -d,`" if test -n "$zlib_inc"; then - saved_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -I$zlib_inc" fi zlib_lib="`echo $withval |cut -f2 -d, -s`" if test -n "$zlib_lib"; then - saved_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -L$zlib_lib" fi ;; @@ -1405,9 +1403,9 @@ dnl libraries. dnl DYNAMIC_DIRS="" if test -n "$LDFLAGS"; then - for d in $LDFLAGS ; do + for d in X $LDFLAGS ; do case "$d" in - -L.*) + -L*) d=`echo $d | sed -e 's/-L//g'` case "$d" in .*) @@ -1425,7 +1423,7 @@ AC_SUBST(DYNAMIC_DIRS) if test -n "$CPPFLAGS"; then TEMP_CPPFLAGS="" - for d in $CPPFLAGS ; do + for d in X $CPPFLAGS ; do case "$d" in -I.*) dnl If the path isn't absolute, make it so by prepending |