diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2004-10-27 14:42:56 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2004-10-27 14:42:56 +0000 |
commit | 5ae4c565619048723021f9780baf259497804acc (patch) | |
tree | 2df353e2643a459ac4932521432c639aad13bc16 /fixincludes/configure | |
parent | 0ca5fab2b72b3bb201dd05e20f3f2c651779a673 (diff) | |
download | gcc-5ae4c565619048723021f9780baf259497804acc.tar.gz |
re PR other/17991 (Two-process fixincludes broken: pz_mn_name_pat undefined)
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.
From-SVN: r89680
Diffstat (limited to 'fixincludes/configure')
-rwxr-xr-x | fixincludes/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fixincludes/configure b/fixincludes/configure index d5da756ada8..b0116f9cad7 100755 --- a/fixincludes/configure +++ b/fixincludes/configure @@ -2347,7 +2347,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu # Check whether --enable-twoprocess or --disable-twoprocess was given. if test "${enable_twoprocess+set}" = set; then enableval="$enable_twoprocess" - if test "x$enable_twoprocess" = yes; then + if test "x$enable_twoprocess" = xyes; then TARGET=twoprocess else TARGET=oneprocess |