summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-11-08 17:58:50 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-11-08 17:58:50 (GMT)
commit8073cbe745f7387c33193e8b5497ecd79a14b671 (patch)
tree7c74d2b61d006b05687068392912a3e5fb9581f7 /configure
parentb1ea50c0462bfb898480dabd3649cbdcc6c5e7e6 (diff)
downloadhdf5-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-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index de2ad71..5c26f51 100755
--- a/configure
+++ b/configure
@@ -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'`