[kaffe] CVS kaffe (robilad): fix configure to detect attempt to use ecj and jikes simultaneously

Kaffe CVS cvs-commits at kaffe.org
Sat Jul 15 06:36:11 PDT 2006


PatchSet 7342 
Date: 2006/07/15 13:22:13
Author: robilad
Branch: HEAD
Tag: (none) 
Log:
fix configure to detect attempt to use ecj and jikes simultaneously

2006-07-15  Dalibor Topic  <robilad at kaffe.org>

        Fix for #44.

        * configure.ac: Fixed typos in check for multiple
        compilers that prevented it from firing when someone
        asked configure to use both ecj and jikes at the same
        time.

Members: 
	ChangeLog:1.4845->1.4846 
	configure:1.555->1.556 
	configure.ac:1.233->1.234 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.4845 kaffe/ChangeLog:1.4846
--- kaffe/ChangeLog:1.4845	Sat Jul 15 12:29:27 2006
+++ kaffe/ChangeLog	Sat Jul 15 13:22:13 2006
@@ -1,5 +1,14 @@
 2006-07-15  Dalibor Topic  <robilad at kaffe.org>
 
+	Fix for #44.
+
+	* configure.ac: Fixed typos in check for multiple
+	compilers that prevented it from firing when someone
+	asked configure to use both ecj and jikes at the same 
+	time.
+
+2006-07-15  Dalibor Topic  <robilad at kaffe.org>
+
 	* FAQ/FAQ.automake,
 	developers/autogen.sh: Updated gettext to 0.14.6.
 
Index: kaffe/configure
diff -u kaffe/configure:1.555 kaffe/configure:1.556
--- kaffe/configure:1.555	Sat Jul 15 10:26:08 2006
+++ kaffe/configure	Sat Jul 15 13:22:16 2006
@@ -25518,7 +25518,7 @@
 echo "${ECHO_T}$msg_use_jikes" >&6
 
 
-if test x"use_ecj" = x"yes" -a x"use_jikes" = x"yes"; then
+if test x"$use_ecj" = x"yes" -a x"$use_jikes" = x"yes"; then
 	{ { echo "$as_me:$LINENO: error: You must specify only one compiler" >&5
 echo "$as_me: error: You must specify only one compiler" >&2;}
    { (exit 1); exit 1; }; }
Index: kaffe/configure.ac
diff -u kaffe/configure.ac:1.233 kaffe/configure.ac:1.234
--- kaffe/configure.ac:1.233	Sat Jul 15 10:26:16 2006
+++ kaffe/configure.ac	Sat Jul 15 13:22:24 2006
@@ -909,7 +909,7 @@
 dnl Set the java compiler variable.
 dnl =========================================================================
 
-if test x"use_ecj" = x"yes" -a x"use_jikes" = x"yes"; then
+if test x"$use_ecj" = x"yes" -a x"$use_jikes" = x"yes"; then
 	AC_MSG_ERROR([You must specify only one compiler])
 fi
 




More information about the kaffe mailing list