This is the mail archive of the
java-prs@gcc.gnu.org
mailing list for the Java project.
[Bug java/28024] libjava build failure on Solaris 2.8 (sun4u)
- From: "cvs-commit at developer dot classpath dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: java-prs at gcc dot gnu dot org
- Date: 14 Jun 2006 12:42:40 -0000
- Subject: [Bug java/28024] libjava build failure on Solaris 2.8 (sun4u)
- References: <bug-28024-12822@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #2 from cvs-commit at developer dot classpath dot org 2006-06-14 12:42 -------
Subject: Bug 28024
CVSROOT: /cvsroot/classpath
Module name: classpath
Changes by: Tom Tromey <tromey> 06/06/14 12:35:17
Modified files:
. : ChangeLog configure.ac
m4 : acinclude.m4
Log message:
PR java/28024:
* m4/acinclude.m4 (REGEN_WITH_JAY): Use backquote, not $(...).
* configure.ac (QT_INCLUDE_DIR): Use backquote, not $(...).
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/classpath/ChangeLog?cvsroot=classpath&r1=1.7807&r2=1.7808
http://cvs.savannah.gnu.org/viewcvs/classpath/configure.ac?cvsroot=classpath&r1=1.160&r2=1.161
http://cvs.savannah.gnu.org/viewcvs/classpath/m4/acinclude.m4?cvsroot=classpath&r1=1.11&r2=1.12
Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/classpath/classpath/ChangeLog,v
retrieving revision 1.7807
retrieving revision 1.7808
diff -u -b -r1.7807 -r1.7808
--- ChangeLog 14 Jun 2006 11:01:25 -0000 1.7807
+++ ChangeLog 14 Jun 2006 12:35:16 -0000 1.7808
@@ -1,3 +1,9 @@
+2006-06-14 Tom Tromey <tromey@redhat.com>
+
+ PR java/28024:
+ * m4/acinclude.m4 (REGEN_WITH_JAY): Use backquote, not $(...).
+ * configure.ac (QT_INCLUDE_DIR): Use backquote, not $(...).
+
2006-06-14 Roman Kennke <kennke@aicas.com>
* javax/swing/JComponent.java
Index: configure.ac
===================================================================
RCS file: /cvsroot/classpath/classpath/configure.ac,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -b -r1.160 -r1.161
--- configure.ac 7 Jun 2006 15:09:39 -0000 1.160
+++ configure.ac 14 Jun 2006 12:35:17 -0000 1.161
@@ -438,7 +438,7 @@
if test "x$HAVE_QT4" = "xyes"; then
dnl Check needed because in some cases the QtGui includedir
dnl doesn't contain the subsystem dir.
- QT_INCLUDE_DIR=$($PKG_CONFIG --variable=includedir QtGui)
+ QT_INCLUDE_DIR=`$PKG_CONFIG --variable=includedir QtGui`
EXTRA_QT_INCLUDE_DIR="$QT_INCLUDE_DIR/Qt"
AC_CHECK_FILE([$QT_INCLUDE_DIR/QWidget],
AC_MSG_NOTICE([No extra QT_INCLUDE_DIR needed]),
Index: m4/acinclude.m4
===================================================================
RCS file: /cvsroot/classpath/classpath/m4/acinclude.m4,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- m4/acinclude.m4 27 Mar 2006 17:47:29 -0000 1.11
+++ m4/acinclude.m4 14 Jun 2006 12:35:17 -0000 1.12
@@ -409,13 +409,13 @@
AC_MSG_ERROR("jay executable not found");
fi
else
- JAY_DIR_PATH=$(dirname "${withval}")
+ JAY_DIR_PATH=`dirname "${withval}"`
JAY="${withval}"
AC_SUBST(JAY)
fi
JAY_SKELETON="${JAY_DIR_PATH}/skeleton"
AC_CHECK_FILE(${JAY_SKELETON}, AC_SUBST(JAY_SKELETON),
- AC_MSG_ERROR("Expected skeleton file in $(dirname ${withval})"))
+ AC_MSG_ERROR("Expected skeleton file in `dirname ${withval}`"))
JAY_FOUND=yes
],
[
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=28024