summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-01-24 19:50:36 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-01-24 19:50:36 +0000
commit3f5d3ceed000edc91d94944672acedfec741633f (patch)
tree82a628174d30d200b263c3004735256437fb9df5
parent47ccf37c62e364e75342de7e62d27d539c65dc14 (diff)
downloadpostgresql-3f5d3ceed000edc91d94944672acedfec741633f.tar.gz
Cope with gcc that outputs a multiline version string, per Trond.
-rwxr-xr-xconfigure4
-rw-r--r--configure.in2
2 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 27f821baca..c539becf5d 100755
--- a/configure
+++ b/configure
@@ -1481,7 +1481,7 @@ else
if { (eval echo configure:1482: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then
for file in conftest.*; do
case $file in
- *.c | *.C | *.o | *.obj) ;;
+ *.c | *.o | *.obj) ;;
*) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;
esac
done
@@ -1629,7 +1629,7 @@ fi
# Create compiler version string
if test x"$GCC" = x"yes" ; then
- cc_string="GCC `${CC} --version`"
+ cc_string="GCC `${CC} --version | head -1`"
else
cc_string=$CC
fi
diff --git a/configure.in b/configure.in
index 40be9ec52d..9d05ed31cb 100644
--- a/configure.in
+++ b/configure.in
@@ -297,7 +297,7 @@ AC_SUBST(GCC)
# Create compiler version string
if test x"$GCC" = x"yes" ; then
- cc_string="GCC `${CC} --version`"
+ cc_string="GCC `${CC} --version | head -1`"
else
cc_string=$CC
fi