classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] FYI: Fixed type in gjdoc detection code


From: Mark Wielaard
Subject: [cp-patches] FYI: Fixed type in gjdoc detection code
Date: Wed, 12 Jan 2005 00:19:08 +0100

Hi,

This fixes a stupid copy/paste mistake on my part:

2005-01-11  Mark Wielaard  <address@hidden>

        * acinclude.m4 (CLASSPATH_WITH_GJDOC): Test for gjdoc, not jay.

Without it --with-gjdoc without an argument wouldn't fail if gjdoc
wasn't in your path.

Committed,

Mark

--- acinclude.m4        9 Jan 2005 13:08:31 -0000       1.47
+++ acinclude.m4        11 Jan 2005 23:16:28 -0000
@@ -360,8 +360,8 @@
               elif test "x${withval}" = xyes -o "x{withval}" = x; then
                 WITH_GJDOC=yes;
                 AC_PATH_PROG(GJDOC, gjdoc, "no")
-                if test "x${JAY}" = xno; then
-                  AC_MSG_ERROR("jay executable not found");
+                if test "x${GJDOC}" = xno; then
+                  AC_MSG_ERROR("gjdoc executable not found");
                 fi
               else
                 WITH_GJDOC=yes

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

[Prev in Thread] Current Thread [Next in Thread]