OpenJDK / portola / portola
changeset 42858:670162543c5d
Merge
author | jwilhelm |
---|---|
date | Tue, 27 Dec 2016 22:00:28 +0100 |
parents | b37629ea3943 3411570543b8 |
children | 44601aa03c2d |
files | common/autoconf/generated-configure.sh |
diffstat | 4 files changed, 6 insertions(+), 21 deletions(-) [+] |
line wrap: on
line diff
--- a/.hgtags-top-repo Thu Dec 22 22:10:02 2016 +0100 +++ b/.hgtags-top-repo Tue Dec 27 22:00:28 2016 +0100 @@ -392,3 +392,4 @@ 5f6920274c48eb00d31afee6c034826a754c13d9 jdk-9+147 3ffc3e886c74736e387f3685e86b557cdea706c8 jdk-9+148 b119012d1c2ab2570fe8718633840d0c1f1f441d jdk-9+149 +6234069ff9789f7582e1faa32cb6283cbd1a5a2d jdk-9+150
--- a/common/autoconf/boot-jdk.m4 Thu Dec 22 22:10:02 2016 +0100 +++ b/common/autoconf/boot-jdk.m4 Tue Dec 27 22:00:28 2016 +0100 @@ -305,9 +305,8 @@ BOOT_JDK_SOURCETARGET="-source 8 -target 8" AC_SUBST(BOOT_JDK_SOURCETARGET) - ADD_JVM_ARG_IF_OK([--patch-module foo=bar], dummy, [$JAVA]) AC_MSG_CHECKING([if Boot JDK supports modules]) - if test "x$JVM_ARG_OK" = "xtrue"; then + if "$JAVA" --list-modules > /dev/null 2>&1; then AC_MSG_RESULT([yes]) BOOT_JDK_MODULAR="true" else
--- a/common/autoconf/generated-configure.sh Thu Dec 22 22:10:02 2016 +0100 +++ b/common/autoconf/generated-configure.sh Tue Dec 27 22:00:28 2016 +0100 @@ -5170,7 +5170,7 @@ #CUSTOM_AUTOCONF_INCLUDE # Do not change or remove the following line, it is needed for consistency checks: -DATE_WHEN_GENERATED=1482309967 +DATE_WHEN_GENERATED=1482828098 ############################################################################### # @@ -30665,24 +30665,9 @@ BOOT_JDK_SOURCETARGET="-source 8 -target 8" - - $ECHO "Check if jvm arg is ok: --patch-module foo=bar" >&5 - $ECHO "Command: $JAVA --patch-module foo=bar -version" >&5 - OUTPUT=`$JAVA --patch-module foo=bar -version 2>&1` - FOUND_WARN=`$ECHO "$OUTPUT" | $GREP -i warn` - FOUND_VERSION=`$ECHO $OUTPUT | $GREP " version \""` - if test "x$FOUND_VERSION" != x && test "x$FOUND_WARN" = x; then - dummy="$dummy --patch-module foo=bar" - JVM_ARG_OK=true - else - $ECHO "Arg failed:" >&5 - $ECHO "$OUTPUT" >&5 - JVM_ARG_OK=false - fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking if Boot JDK supports modules" >&5 $as_echo_n "checking if Boot JDK supports modules... " >&6; } - if test "x$JVM_ARG_OK" = "xtrue"; then + if "$JAVA" --list-modules > /dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } BOOT_JDK_MODULAR="true"
--- a/make/Javadoc.gmk Thu Dec 22 22:10:02 2016 +0100 +++ b/make/Javadoc.gmk Tue Dec 27 22:00:28 2016 +0100 @@ -148,10 +148,10 @@ # arg 2: copyright url (optional) # arg 3: free-form text snippet (optional) define GenerateBottom - <font size="-1">$(if $(strip $3), $(strip $3))<br> $(if \ + <span style="font-size:smaller">$(if $(strip $3), $(strip $3))<br> $(if \ $(strip $2),<a href="$(strip $2)">Copyright</a>,Copyright) \ © $(strip $1), $(COPYRIGHT_YEAR), $(FULL_COMPANY_NAME). \ - $(COMPANY_ADDRESS). All rights reserved.</font> + $(COMPANY_ADDRESS). All rights reserved.</span> endef # Speed up finding by filling cache