diff options
| -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 327ecbb19da..c9bc52e8275 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 a19870fe2cc..2642e241397 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 |

