classpath-patches
[Top][All Lists]
Advanced

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

[cp-patches] Patch: FYI: minor configure cleanup


From: Tom Tromey
Subject: [cp-patches] Patch: FYI: minor configure cleanup
Date: 10 May 2005 09:17:04 -0600

I'm checking this in.

Using quotes in AC_MSG_CHECKING makes for weird-looking output.

Tom

Index: ChangeLog
from  Tom Tromey  <address@hidden>

        * configure.ac (CLASSPATH_INCLUDES): Remove quotes in checking
        messages.

Index: configure.ac
===================================================================
RCS file: /cvsroot/classpath/classpath/configure.ac,v
retrieving revision 1.85
diff -u -r1.85 configure.ac
--- configure.ac 1 May 2005 20:42:00 -0000 1.85
+++ configure.ac 10 May 2005 15:17:20 -0000
@@ -290,13 +290,13 @@
 
 dnl -----------------------------------------------------------
 if test "x${COMPILE_JNI}" = xyes; then
-  AC_MSG_CHECKING("jni_md.h support")
+  AC_MSG_CHECKING(jni_md.h support)
   if test -f ${srcdir}/include/jni_md-${target_cpu}-${target_os}.h; then
-    AC_MSG_RESULT("yes")
+    AC_MSG_RESULT(yes)
   else
     target_cpu=x86
     target_os=linux-gnu 
-    AC_MSG_WARN("no, using x86-linux-gnu")
+    AC_MSG_WARN(no, using x86-linux-gnu)
   fi
   ac_sources="include/jni_md-${target_cpu}-${target_os}.h"
   ac_dests="include/jni_md.h"




reply via email to

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