diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-08 17:58:50 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-08 17:58:50 (GMT) |
commit | 8073cbe745f7387c33193e8b5497ecd79a14b671 (patch) | |
tree | 7c74d2b61d006b05687068392912a3e5fb9581f7 /configure | |
parent | b1ea50c0462bfb898480dabd3649cbdcc6c5e7e6 (diff) | |
download | hdf5-8073cbe745f7387c33193e8b5497ecd79a14b671.zip hdf5-8073cbe745f7387c33193e8b5497ecd79a14b671.tar.gz hdf5-8073cbe745f7387c33193e8b5497ecd79a14b671.tar.bz2 |
[svn-r2814] Purpose:
Stupidity Fix
Description:
Forgot to remove one of the X from a `for' shell script.
Solution:
Removed it...it works now.
Platforms tested:
Linux
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9372,7 +9372,7 @@ fi DYNAMIC_DIRS="" if test -n "$LDFLAGS"; then - for d in X $LDFLAGS ; do + for d in $LDFLAGS ; do case "$d" in -L*) d=`echo $d | sed -e 's/-L//g'` @@ -9390,7 +9390,7 @@ fi if test -n "$CPPFLAGS"; then TEMP_CPPFLAGS="" - for d in X $CPPFLAGS ; do + for d in $CPPFLAGS ; do case "$d" in -I.*) d=`echo $d | sed -e 's/-I//g'` |