diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2004-09-29 11:43:26 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2004-09-29 11:43:26 +0000 |
commit | 32be62b581981b7630a75b5cfcd5212987da393a (patch) | |
tree | eb6f641aa8fb35904fe4bedbae8eb8e68c7d3924 | |
parent | d5f0cf9289b830f8713b46d61ce4e0bdbdecc300 (diff) | |
download | gdb-32be62b581981b7630a75b5cfcd5212987da393a.zip gdb-32be62b581981b7630a75b5cfcd5212987da393a.tar.gz gdb-32be62b581981b7630a75b5cfcd5212987da393a.tar.bz2 |
* configure.in (--without-headers): Add missing double quotes.
* configure: Regenerate.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.in | 4 |
3 files changed, 9 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2004-09-24 Michael Roth <mroth@nessie.de> + + * configure.in (--without-headers): Add missing double quotes. + * configure: Regenerate. + 2004-09-24 Kelley Cook <kcook@gcc.gnu.org> * ylwrap: Revert to previous version. @@ -1024,8 +1024,8 @@ esac # If both --with-headers and --with-libs are specified, default to # --without-newlib. -if test x"${with_headers}" != x && test x"${with_headers} != xno \ - && test x"${with_libs}" != x && test x"${with_libs} != xno ; then +if test x"${with_headers}" != x && test x"${with_headers}" != xno \ + && test x"${with_libs}" != x && test x"${with_libs}" != xno ; then if test x"${with_newlib}" = x ; then with_newlib=no fi diff --git a/configure.in b/configure.in index 9724099..3863cff 100644 --- a/configure.in +++ b/configure.in @@ -250,8 +250,8 @@ esac # If both --with-headers and --with-libs are specified, default to # --without-newlib. -if test x"${with_headers}" != x && test x"${with_headers} != xno \ - && test x"${with_libs}" != x && test x"${with_libs} != xno ; then +if test x"${with_headers}" != x && test x"${with_headers}" != xno \ + && test x"${with_libs}" != x && test x"${with_libs}" != xno ; then if test x"${with_newlib}" = x ; then with_newlib=no fi |