mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
[svn-r10112] Purpose:
Bug fix Description: A test in configure.in redirected output in a way that made mir (at least) unhappy (test: too many arguments). Solution: Changed the semantics so that mir was happy. This didn't seem to make any other platforms unhappy, either. Platforms tested: eirene, modi4, copper, mir, sleipnir (only tested configure)
This commit is contained in:
parent
206aad5bb2
commit
2f4f7d07b1
2
configure
vendored
2
configure
vendored
@ -50337,7 +50337,7 @@ fi
|
||||
PARALLEL=${PARALLEL:-no}
|
||||
|
||||
|
||||
if `echo $CC | grep / 2>&1 /dev/null`; then
|
||||
if `echo $CC | grep / >/dev/null 2>&1`; then
|
||||
CC_VERSION="$CC"
|
||||
else
|
||||
CC_VERSION="$CC";
|
||||
|
@ -2877,8 +2877,8 @@ PARALLEL=${PARALLEL:-no}
|
||||
dnl Compiler with version information. This consists of the full path
|
||||
dnl name of the compiler and the reported version number.
|
||||
AC_SUBST([CC_VERSION])
|
||||
if `echo $CC | grep / 2>&1 /dev/null`; then
|
||||
CC_VERSION="$CC"
|
||||
if `echo $CC | grep / >/dev/null 2>&1`; then
|
||||
CC_VERSION="$CC"
|
||||
else
|
||||
CC_VERSION="$CC";
|
||||
for x in `echo $PATH | sed -e 's/:/ /g'`; do
|
||||
|
Loading…
Reference in New Issue
Block a user