/hg/release/icedtea7-forest-2.3/langtools: 2 new changesets
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Wed Aug 29 09:57:57 PDT 2012
changeset 4ccca0a55ed6 in /hg/release/icedtea7-forest-2.3/langtools
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.3/langtools?cmd=changeset;node=4ccca0a55ed6
author: andrew
date: Wed Aug 22 16:39:30 2012 +0100
PR1095: Allow -Werror to be turned off.
changeset 0cf6181d44db in /hg/release/icedtea7-forest-2.3/langtools
details: http://icedtea.classpath.org/hg/release/icedtea7-forest-2.3/langtools?cmd=changeset;node=0cf6181d44db
author: andrew
date: Wed Aug 29 17:57:25 2012 +0100
Added tag icedtea-2.3.1 for changeset 4ccca0a55ed6
diffstat:
.hgtags | 1 +
make/Makefile | 6 ++++++
make/build.properties | 2 +-
3 files changed, 8 insertions(+), 1 deletions(-)
diffs (36 lines):
diff -r 528ce55d1259 -r 0cf6181d44db .hgtags
--- a/.hgtags Wed Aug 15 19:38:23 2012 +0100
+++ b/.hgtags Wed Aug 29 17:57:25 2012 +0100
@@ -207,3 +207,4 @@
6aac89e84fc96d15bb78b13aa71c9e6b73d7237e jdk7u6-b24
bcd1d067d525065630deb98b678bc00b499adbe1 jdk7u6-b30
ca0a82364e5fe1ae03911c90732b226d2482b77c icedtea-2.3
+4ccca0a55ed66de7e7482b5f2a9222ec44bea699 icedtea-2.3.1
diff -r 528ce55d1259 -r 0cf6181d44db make/Makefile
--- a/make/Makefile Wed Aug 15 19:38:23 2012 +0100
+++ b/make/Makefile Wed Aug 29 17:57:25 2012 +0100
@@ -111,6 +111,12 @@
ANT_OPTIONS += -Ddebug.classfiles=true
endif
+ifeq ($(JAVAC_WARNINGS_FATAL), true)
+ ANT_OPTIONS += -Dwarnings.fatal=-Werror
+else
+ ANT_OPTIONS += -Dwarnings.fatal=
+endif
+
# Note: jdk/make/common/Defs.gmk uses LANGUAGE_VERSION (-source NN)
# and the somewhat misnamed CLASS_VERSION (-target NN)
ifdef TARGET_CLASS_VERSION
diff -r 528ce55d1259 -r 0cf6181d44db make/build.properties
--- a/make/build.properties Wed Aug 15 19:38:23 2012 +0100
+++ b/make/build.properties Wed Aug 29 17:57:25 2012 +0100
@@ -68,7 +68,7 @@
# set the following to -version to verify the versions of javac being used
javac.version.opt =
# in time, there should be no exceptions to -Xlint:all
-javac.lint.opts = -Xlint:all,-deprecation -Werror
+javac.lint.opts = -Xlint:all,-deprecation ${warnings.fatal}
# options for the <javadoc> task for javac
#javadoc.jls3.url=http://java.sun.com/docs/books/jls/
More information about the distro-pkg-dev
mailing list