This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: Fix autoconf warning


autoconf 2.59 was giving me a "you should use literals" warning. I'm checking in this trivial patch to fix it.

Regards

Bryce


2004-08-16 Bryce McKinlay <mckinlay@redhat.com>


   * configure.in (AC_CONF_SUBDIRS): Use literal for ltdl directory
   to avoid autoconf warning.

--- configure.in        13 Aug 2004 23:05:22 -0000      1.205
+++ configure.in        16 Aug 2004 18:57:13 -0000
@@ -163,7 +163,7 @@
AC_SUBST(LIBLTDL)
AC_SUBST(DIRLTDL)
AM_PROG_LIBTOOL
-AC_CONFIG_SUBDIRS($DIRLTDL)
+AC_CONFIG_SUBDIRS(libltdl)

if test -z "$with_target_subdir" || test "$with_target_subdir" = "."; then
   COMPPATH=.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]