diff options
author | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-27 14:42:56 +0000 |
---|---|---|
committer | bonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-27 14:42:56 +0000 |
commit | 998ae78e9cc8d999b93e582374298be684334efa (patch) | |
tree | 2df353e2643a459ac4932521432c639aad13bc16 /fixincludes/configure.ac | |
parent | bae806a134aa5d4ea383472931f69ca1392ec94d (diff) | |
download | gcc-998ae78e9cc8d999b93e582374298be684334efa.tar.gz |
2004-10-27 Paolo Bonzini <bonzini@gnu.org>
PR other/17991
* configure.ac: Fix typo.
* configure: Regenerate.
* fixincl.c (fix_with_system): tSCC is not a pointer. Fix.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89680 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fixincludes/configure.ac')
-rw-r--r-- | fixincludes/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fixincludes/configure.ac b/fixincludes/configure.ac index 8499032db81..f3eeb76c3b5 100644 --- a/fixincludes/configure.ac +++ b/fixincludes/configure.ac @@ -11,7 +11,7 @@ AC_PROG_CC # AC_ARG_ENABLE([twoprocess], [ --enable-twoprocess Use a separate process to apply the fixes], -[if test "x$enable_twoprocess" = yes; then +[if test "x$enable_twoprocess" = xyes; then TARGET=twoprocess else TARGET=oneprocess |