/hg/icedtea: 2 new changesets

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Thu May 19 19:23:51 PDT 2011


changeset e7b97b6e8ece in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=e7b97b6e8ece
author: Andrew John Hughes <ahughes at redhat.com>
date: Fri May 20 02:58:30 2011 +0100

	Use absolute path when creating symbolic link to extracted HotSpot
	directory.

	2011-05-20 Andrew John Hughes <ahughes at redhat.com>

	 * Makefile.am: (extract-hotspot): Use absolute path
	when creating symbolic link.


changeset 1af45d3c1f92 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=1af45d3c1f92
author: Andrew John Hughes <ahughes at redhat.com>
date: Fri May 20 03:23:45 2011 +0100

	Avoid having two IT_FIND_JAVAC macros; rename one to
	IT_FIND_JAVA_COMPILER.

	2011-05-20 Andrew John Hughes <ahughes at redhat.com>

	 * acinclude.m4: Rename top-level IT_FIND_JAVAC
	to IT_FIND_JAVA_COMPILER.
		* configure.ac: Call IT_FIND_JAVA_COMPILER not
	IT_FIND_JAVAC.


diffstat:

 ChangeLog    |  15 +++++++++++++++
 Makefile.am  |   3 ++-
 acinclude.m4 |   2 +-
 configure.ac |   2 +-
 4 files changed, 19 insertions(+), 3 deletions(-)

diffs (59 lines):

diff -r 12beb2f3e5fc -r 1af45d3c1f92 ChangeLog
--- a/ChangeLog	Fri May 20 02:50:23 2011 +0100
+++ b/ChangeLog	Fri May 20 03:23:45 2011 +0100
@@ -1,3 +1,18 @@
+2011-05-20  Andrew John Hughes  <ahughes at redhat.com>
+
+	* acinclude.m4:
+	Rename top-level IT_FIND_JAVAC
+	to IT_FIND_JAVA_COMPILER.
+	* configure.ac:
+	Call IT_FIND_JAVA_COMPILER not
+	IT_FIND_JAVAC.
+
+2011-05-20  Andrew John Hughes  <ahughes at redhat.com>
+
+	* Makefile.am:
+	(extract-hotspot): Use absolute path when
+	creating symbolic link.
+
 2011-05-20  Andrew John Hughes  <ahughes at redhat.com>
 
 	* Makefile.am:
diff -r 12beb2f3e5fc -r 1af45d3c1f92 Makefile.am
--- a/Makefile.am	Fri May 20 02:50:23 2011 +0100
+++ b/Makefile.am	Fri May 20 03:23:45 2011 +0100
@@ -1244,7 +1244,8 @@
 	    fi ; \
 	    if ! test -d openjdk/hotspot ; \
 	    then \
-	      ln -s hotspot-$(HS_CHANGESET) openjdk/hotspot ; \
+	      ln -s $(abs_top_builddir)/hotspot-$(HS_CHANGESET) \
+	        openjdk/hotspot ; \
 	    fi ; \
 	  fi ; \
 	fi
diff -r 12beb2f3e5fc -r 1af45d3c1f92 acinclude.m4
--- a/acinclude.m4	Fri May 20 02:50:23 2011 +0100
+++ b/acinclude.m4	Fri May 20 03:23:45 2011 +0100
@@ -117,7 +117,7 @@
   AC_SUBST(OS_PATH)
 ])
 
-AC_DEFUN([IT_FIND_JAVAC],
+AC_DEFUN([IT_FIND_JAVA_COMPILER],
 [
   JAVAC=${SYSTEM_JDK_DIR}/bin/javac
   IT_FIND_JAVAC
diff -r 12beb2f3e5fc -r 1af45d3c1f92 configure.ac
--- a/configure.ac	Fri May 20 02:50:23 2011 +0100
+++ b/configure.ac	Fri May 20 03:23:45 2011 +0100
@@ -108,7 +108,7 @@
 IT_CHECK_IF_BOOTSTRAPPING
 IT_CHECK_FOR_JDK
 IT_FIND_JAVA
-IT_FIND_JAVAC
+IT_FIND_JAVA_COMPILER
 IT_FIND_JAVAH
 IT_FIND_JAR
 IT_FIND_RMIC



More information about the distro-pkg-dev mailing list