Skip to content

Commit a4cddf4

Browse files
committed
Merge branch 'master' of https://git.openjdk.java.net/jdk into JDK-8023980
2 parents eed143e + c6d798c commit a4cddf4

File tree

1,762 files changed

+39278
-28474
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,762 files changed

+39278
-28474
lines changed

.github/workflows/submit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Determine versions and locations to be used for dependencies
5757
id: check_deps
58-
run: "echo ::set-output name=dependencies::`cat make/autoconf/version-numbers make/conf/test-dependencies | sed -e '1i {' -e 's/#.*//g' -e 's/\"//g' -e 's/\\(.*\\)=\\(.*\\)/\"\\1\": \"\\2\",/g' -e '$s/,\\s\\{0,\\}$/\\}/'`"
58+
run: "echo ::set-output name=dependencies::`cat make/conf/version-numbers.conf make/conf/test-dependencies | sed -e '1i {' -e 's/#.*//g' -e 's/\"//g' -e 's/\\(.*\\)=\\(.*\\)/\"\\1\": \"\\2\",/g' -e '$s/,\\s\\{0,\\}$/\\}/'`"
5959
working-directory: jdk
6060
if: steps.check_submit.outputs.should_run != 'false'
6161

make/CompileInterimLangtools.gmk

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2014, 2021, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -49,8 +49,8 @@ TARGETS += $(patsubst %, $(BUILDTOOLS_OUTPUTDIR)/gensrc/%/module-info.java, \
4949
$(INTERIM_LANGTOOLS_MODULES))
5050

5151
$(eval $(call SetupCopyFiles, COPY_PREVIEW_FEATURES, \
52-
FILES := $(TOPDIR)/src/java.base/share/classes/jdk/internal/PreviewFeature.java, \
53-
DEST := $(BUILDTOOLS_OUTPUTDIR)/gensrc/java.base.interim/jdk/internal/, \
52+
FILES := $(TOPDIR)/src/java.base/share/classes/jdk/internal/javac/PreviewFeature.java, \
53+
DEST := $(BUILDTOOLS_OUTPUTDIR)/gensrc/java.base.interim/jdk/internal/javac/, \
5454
))
5555

5656
TARGETS += $(COPY_PREVIEW_FEATURES)
@@ -74,15 +74,15 @@ define SetupInterimModule
7474
EXCLUDE_FILES := $(TOPDIR)/src/$1/share/classes/module-info.java \
7575
Standard.java, \
7676
EXTRA_FILES := $(BUILDTOOLS_OUTPUTDIR)/gensrc/$1.interim/module-info.java, \
77-
COPY := .gif .png .xml .css .js .txt javax.tools.JavaCompilerTool, \
77+
COPY := .gif .png .xml .css .js .js.template .txt javax.tools.JavaCompilerTool, \
7878
BIN := $(BUILDTOOLS_OUTPUTDIR)/interim_langtools_modules/$1.interim, \
7979
DISABLED_WARNINGS := module options, \
8080
JAVAC_FLAGS := \
8181
--module-path $(BUILDTOOLS_OUTPUTDIR)/interim_langtools_modules \
8282
$$(INTERIM_LANGTOOLS_ADD_EXPORTS) \
8383
--patch-module java.base=$(BUILDTOOLS_OUTPUTDIR)/gensrc/java.base.interim \
84-
--add-exports java.base/jdk.internal=java.compiler.interim \
85-
--add-exports java.base/jdk.internal=jdk.compiler.interim, \
84+
--add-exports java.base/jdk.internal.javac=java.compiler.interim \
85+
--add-exports java.base/jdk.internal.javac=jdk.compiler.interim, \
8686
))
8787

8888
$1_DEPS_INTERIM := $$(addsuffix .interim, $$(filter \

0 commit comments

Comments
 (0)