aboutsummaryrefslogtreecommitdiff
path: root/fixincludes
diff options
context:
space:
mode:
authorbonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-27 14:42:56 +0000
committerbonzini <bonzini@138bc75d-0d04-0410-961f-82ee72b054a4>2004-10-27 14:42:56 +0000
commit998ae78e9cc8d999b93e582374298be684334efa (patch)
tree2df353e2643a459ac4932521432c639aad13bc16 /fixincludes
parentbae806a134aa5d4ea383472931f69ca1392ec94d (diff)
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')
-rw-r--r--fixincludes/ChangeLog8
-rwxr-xr-xfixincludes/configure2
-rw-r--r--fixincludes/configure.ac2
-rw-r--r--fixincludes/fixincl.c2
4 files changed, 11 insertions, 3 deletions
diff --git a/fixincludes/ChangeLog b/fixincludes/ChangeLog
index 1b3274fdf1a..3981005c2b7 100644
--- a/fixincludes/ChangeLog
+++ b/fixincludes/ChangeLog
@@ -1,3 +1,11 @@
+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.
+
2004-10-20 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
PR bootstrap/17832
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
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
diff --git a/fixincludes/fixincl.c b/fixincludes/fixincl.c
index 243f9bbfd10..998ff7e68f0 100644
--- a/fixincludes/fixincl.c
+++ b/fixincludes/fixincl.c
@@ -852,7 +852,7 @@ fix_with_system (tFixDesc* p_fixd,
char* pz_scan;
size_t argsize;
int i;
- tSCC z_applyfix_prog[2] = {
+ tSCC *z_applyfix_prog[2] = {
"/../fixincludes/applyfix" EXE_EXT,
"/../../fixincludes/applyfix" EXE_EXT };