/hg/icedtea6: PR3140: Pass $(CC) and $(CXX) to OpenJDK build

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Mon Aug 15 15:49:34 UTC 2016


changeset 6ea26782250d in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=6ea26782250d
author: Andrew John Hughes <gnu.andrew at redhat.com>
date: Mon Aug 15 16:52:53 2016 +0100

	PR3140: Pass $(CC) and $(CXX) to OpenJDK build

	2016-08-14  Andrew John Hughes  <gnu.andrew at member.fsf.org>

		PR3140: Pass $(CC) and $(CXX) to OpenJDK build
		* Makefile.am:
		(ICEDTEA_ENV): Set CC and CXX instead
		of BUILD_GCC and BUILD_CXX. Use $(CC)
		and $(CXX) instead of hardcoding gcc
		and g++.
		* NEWS: Updated.


diffstat:

 ChangeLog   |  10 ++++++++++
 Makefile.am |   4 ++--
 NEWS        |   1 +
 3 files changed, 13 insertions(+), 2 deletions(-)

diffs (42 lines):

diff -r 2293a898b34a -r 6ea26782250d ChangeLog
--- a/ChangeLog	Mon Aug 15 06:30:32 2016 +0100
+++ b/ChangeLog	Mon Aug 15 16:52:53 2016 +0100
@@ -1,3 +1,13 @@
+2016-08-14  Andrew John Hughes  <gnu.andrew at member.fsf.org>
+
+	PR3140: Pass $(CC) and $(CXX) to OpenJDK build
+	* Makefile.am:
+	(ICEDTEA_ENV): Set CC and CXX instead
+	of BUILD_GCC and BUILD_CXX. Use $(CC)
+	and $(CXX) instead of hardcoding gcc
+	and g++.
+	* NEWS: Updated.
+
 2016-08-04  Andrew John Hughes  <gnu.andrew at member.fsf.org>
 
 	PR3129: pax-mark-vm script calls "exit -1" which
diff -r 2293a898b34a -r 6ea26782250d Makefile.am
--- a/Makefile.am	Mon Aug 15 06:30:32 2016 +0100
+++ b/Makefile.am	Mon Aug 15 16:52:53 2016 +0100
@@ -863,8 +863,8 @@
 	VERBOSE="$(VERBOSE)" \
 	ALT_OUTPUTDIR="$(BUILD_OUTPUT_DIR)" \
 	STATIC_CXX="false" \
-	BUILD_GCC=gcc$(GCC_SUFFIX) \
-	BUILD_CXX=g++$(GCC_SUFFIX) \
+	CC=$(CC)$(GCC_SUFFIX) \
+	CXX=$(CXX)$(GCC_SUFFIX) \
 	COMPILER_WARNINGS_FATAL="$(WERROR_STATUS)" \
 	UNLIMITED_CRYPTO="true"
 
diff -r 2293a898b34a -r 6ea26782250d NEWS
--- a/NEWS	Mon Aug 15 06:30:32 2016 +0100
+++ b/NEWS	Mon Aug 15 16:52:53 2016 +0100
@@ -47,6 +47,7 @@
   - PR3132: PaX marking fails on filesystems which don't support extended attributes
   - PR3137: GTKLookAndFeel does not honor gtk-alternative-button-order
   - PR3139: Update documentation
+  - PR3140: Pass $(CC) and $(CXX) to OpenJDK build
 
 New in release 1.13.11 (2016-05-05):
 


More information about the distro-pkg-dev mailing list