aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@gcc.gnu.org>2000-09-21 07:37:11 +0200
committerAndreas Jaeger <aj@gcc.gnu.org>2000-09-21 07:37:11 +0200
commitc2f7d4034dbb8ed5b8ebb829317f0cc472185d5b (patch)
tree325c98895287ec9e9311978642aa20c4fc1a9166
parent7373064a8d8529cfdfd56bb034167d14f6f1bdba (diff)
downloadgcc-c2f7d4034dbb8ed5b8ebb829317f0cc472185d5b.zip
gcc-c2f7d4034dbb8ed5b8ebb829317f0cc472185d5b.tar.gz
gcc-c2f7d4034dbb8ed5b8ebb829317f0cc472185d5b.tar.bz2
Fix typo in applying last patch to configure.in and regenerate configure.
From-SVN: r36559
-rwxr-xr-xgcc/configure2
-rw-r--r--gcc/configure.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/configure b/gcc/configure
index 327ecbb..c9bc52e 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -1516,7 +1516,7 @@ rm -f conftest*
fi
echo "$ac_t""$gcc_cv_glibc" 1>&6
-if test $gcc_cv_glibc" = yes; then
+if test $gcc_cv_glibc = yes; then
cat >> confdefs.h <<\EOF
#define _GNU_SOURCE 1
EOF
diff --git a/gcc/configure.in b/gcc/configure.in
index a19870f..2642e24 100644
--- a/gcc/configure.in
+++ b/gcc/configure.in
@@ -405,7 +405,7 @@ AC_CACHE_VAL(gcc_cv_glibc,
[gcc_cv_glibc=yes],
gcc_cv_glibc=no)])
AC_MSG_RESULT($gcc_cv_glibc)
-if test $gcc_cv_glibc" = yes; then
+if test $gcc_cv_glibc = yes; then
AC_DEFINE(_GNU_SOURCE, 1, [Always define this when using the GNU C Library])
fi