diff options
author | Andreas Jaeger <aj@gcc.gnu.org> | 2000-09-21 07:37:11 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2000-09-21 07:37:11 +0200 |
commit | c2f7d4034dbb8ed5b8ebb829317f0cc472185d5b (patch) | |
tree | 325c98895287ec9e9311978642aa20c4fc1a9166 | |
parent | 7373064a8d8529cfdfd56bb034167d14f6f1bdba (diff) | |
download | gcc-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-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.in | 2 |
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 |