summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>2000-11-16 14:50:15 (GMT)
committerRobb Matzke <matzke@llnl.gov>2000-11-16 14:50:15 (GMT)
commitf5198a8a79452e5e410f82a6b4b5ecec1392f71e (patch)
tree84f8153b1a6004b33d955cd7cfa05b4f75b2c794 /configure
parentb524625fcb78df2050dc81a9110883517499a5cd (diff)
downloadhdf5-f5198a8a79452e5e410f82a6b4b5ecec1392f71e.zip
hdf5-f5198a8a79452e5e410f82a6b4b5ecec1392f71e.tar.gz
hdf5-f5198a8a79452e5e410f82a6b4b5ecec1392f71e.tar.bz2
[svn-r2943] ./hdf5/configure
Regenerated
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure24
1 files changed, 12 insertions, 12 deletions
diff --git a/configure b/configure
index 5c3e367..ff73d82 100755
--- a/configure
+++ b/configure
@@ -9441,19 +9441,19 @@ fi
PARALLEL=${PARALLEL:-no}
+if `echo $CC | grep / 2>&1 /dev/null`; then
+ CC_VERSION="$CC"
+else
+ CC_VERSION="$CC";
+ for x in `echo $PATH | sed -e 's/:/ /g'`; do
+ if test -x $x/$CC; then
+ CC_VERSION="$x/$CC"
+ break
+ fi
+ done
+fi
if test -n "$cc_vendor" && test -n "$cc_version"; then
- CC_VERSION="$CC ($cc_vendor-$cc_version)"
-else
- if `echo $CC | grep / 2>&1 /dev/null`; then
- CC_VERSION="$CC"
- else
- for x in `echo $PATH | sed -e 's/:/ /g'`; do
- if test -x $x/$CC; then
- CC_VERSION="$x/$CC"
- break
- fi
- done
- fi
+ CC_VERSION="$CC_VERSION ($cc_vendor-$cc_version)"
fi
if test -x /bin/pwd; then