changeset 2652:8b3899c5f70c

PR2863: IcedTea doesn't pass through build and host triplets to OpenJDK's configure 2016-03-31 Andrew John Hughes <gnu_andrew@member.fsf.org> PR2863: IcedTea doesn't pass through build and host triplets to OpenJDK's configure * AUTHORS: Add James and update my e-mail address. * NEWS: Updated. 2016-02-28 James Le Cuirot <chewi@gentoo.org> PR2863: IcedTea doesn't pass through build and host triplets to OpenJDK's configure * Makefile.am: (ICEDTEA_CONFIGURE): Pass build_triplet and host_triplet through to OpenJDK.
author Andrew John Hughes <gnu_andrew@member.fsf.org>
date Fri, 01 Apr 2016 04:05:13 +0100
parents e40064fec5cb
children 0bd162aeebfc
files AUTHORS ChangeLog Makefile.am NEWS
diffstat 4 files changed, 21 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/AUTHORS	Fri Apr 01 03:32:05 2016 +0100
+++ b/AUTHORS	Fri Apr 01 04:05:13 2016 +0100
@@ -8,6 +8,7 @@
 Deepak Bhole <dbhole@redhat.com>
 Tom Callaway <tcallawa@redhat.com>
 Pablo del Campo <pablogdc@gmail.com>
+James Le Cuirot <chewi@gentoo.org>
 Tiago Sturmer Daitx <tdaitx@linux.vnet.ibm.com>
 Thomas Fitzsimmons <fitzsim@redhat.com>
 Matthew Flaschen <matthew.flaschen@gatech.edu>
@@ -15,7 +16,7 @@
 Kyle Galloway <kgallowa@redhat.com>
 Dennis Gilmore <dgilmore@redhat.com>
 Andrew Haley <aph@redhat.com>
-Andrew John Hughes <gnu_andrew@member.fsf.org, ahughes@redhat.com>
+Andrew John Hughes <gnu_andrew@member.fsf.org, gnu.andrew@redhat.com>
 Tomas Hurka <tomas.hurka@sun.com>
 Ioana Ivan <iivan@redhat.com>
 Matthias Klose <doko@ubuntu.com>
--- a/ChangeLog	Fri Apr 01 03:32:05 2016 +0100
+++ b/ChangeLog	Fri Apr 01 04:05:13 2016 +0100
@@ -1,3 +1,19 @@
+2016-03-31  Andrew John Hughes  <gnu_andrew@member.fsf.org>
+
+	PR2863: IcedTea doesn't pass through build
+	and host triplets to OpenJDK's configure
+	* AUTHORS: Add James and update my e-mail
+	address.
+	* NEWS: Updated.
+
+2016-02-28  James Le Cuirot  <chewi@gentoo.org>
+
+	PR2863: IcedTea doesn't pass through build
+	and host triplets to OpenJDK's configure
+	* Makefile.am:
+	(ICEDTEA_CONFIGURE): Pass build_triplet
+	and host_triplet through to OpenJDK.
+
 2016-03-31  Andrew John Hughes  <gnu_andrew@member.fsf.org>
 
 	PR2766: Remove all references to GCJ
--- a/Makefile.am	Fri Apr 01 03:32:05 2016 +0100
+++ b/Makefile.am	Fri Apr 01 04:05:13 2016 +0100
@@ -407,6 +407,8 @@
 endif
 
 ICEDTEA_CONFIGURE = \
+	  --build=$(build_triplet) \
+	  --host=$(host_triplet) \
 	  --enable-unlimited-crypto \
 	  --with-cacerts-file=$(CACERTS_FILE) \
 	  --with-stdc++lib=dynamic \
--- a/NEWS	Fri Apr 01 03:32:05 2016 +0100
+++ b/NEWS	Fri Apr 01 04:05:13 2016 +0100
@@ -154,6 +154,7 @@
   - PR2853: Remove some unnecessary divergences from jdk8u.
   - PR2853: Revert AArch64 jvm.cfg divergence
   - PR2853: Revert changes to libpng source code now 8078245 is in place.
+  - PR2863: IcedTea doesn't pass through build and host triplets to OpenJDK's configure
   - PR2865: Handle uninstallation.
   - PR2873: Fix make distcheck.
   - PR2880: Add missing test directory in make check.