changeset in /hg/icedtea6: I hate autoconf

Gary Benson gbenson at redhat.com
Fri Oct 17 05:45:18 PDT 2008


changeset ad32e49ddfdf in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=ad32e49ddfdf
description:
	I hate autoconf

diffstat:

2 files changed, 5 insertions(+), 1 deletion(-)
ChangeLog    |    4 ++++
acinclude.m4 |    2 +-

diffs (23 lines):

diff -r d7d655481120 -r ad32e49ddfdf ChangeLog
--- a/ChangeLog	Fri Oct 17 03:58:00 2008 -0400
+++ b/ChangeLog	Fri Oct 17 05:16:39 2008 -0400
@@ -1,3 +1,7 @@ 2008-10-16  Deepak Bhole  <dbhole at redhat
+2008-10-17  Gary Benson  <gbenson at redhat.com>
+
+	* acinclude.m4 (FIND_LIBGCJ_JAR): Fix quoting.
+
 2008-10-16  Deepak Bhole  <dbhole at redhat.com>
 
 	* IcedTeaPlugin.cc: Use fifo pipes instead of tcp/ip, make debug output
diff -r d7d655481120 -r ad32e49ddfdf acinclude.m4
--- a/acinclude.m4	Fri Oct 17 03:58:00 2008 -0400
+++ b/acinclude.m4	Fri Oct 17 05:16:39 2008 -0400
@@ -258,7 +258,7 @@ AC_DEFUN([FIND_LIBGCJ_JAR],
     for jar in /usr/share/java/libgcj-4.3*.jar; do
       test -e $jar && LIBGCJ_JAR=$jar
     done
-    if test -n ${LIBGCJ_JAR}; then
+    if test -n "${LIBGCJ_JAR}"; then
       AC_MSG_RESULT(${LIBGCJ_JAR})
     else
       AM_CONDITIONAL(GCC_OLD, test x = x)



More information about the distro-pkg-dev mailing list