diff options
author | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2021-01-25 07:33:05 -0500 |
---|---|---|
committer | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2021-01-25 07:33:05 -0500 |
commit | afb9284f1b14866d911748d0932347763cbf11de (patch) | |
tree | 74d69f671d3f086c3cfe24e4ef382263f5be5cb9 /dev-java/openj9-openjdk/files | |
parent | 6f7b32be2cb9a245861040905e1546f20dd0e993 (diff) | |
download | gentoo-overlay-afb9284f1b14866d911748d0932347763cbf11de.tar.xz gentoo-overlay-afb9284f1b14866d911748d0932347763cbf11de.zip |
dev-java/*: bump, fixes
Diffstat (limited to 'dev-java/openj9-openjdk/files')
-rw-r--r-- | dev-java/openj9-openjdk/files/openjdk-src-doubledollar.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-java/openj9-openjdk/files/openjdk-src-doubledollar.patch b/dev-java/openj9-openjdk/files/openjdk-src-doubledollar.patch deleted file mode 100644 index c1497d5..0000000 --- a/dev-java/openj9-openjdk/files/openjdk-src-doubledollar.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 0601ac847afc86e9010685bb85d82a00a33355b5 Mon Sep 17 00:00:00 2001 -From: erikj <erik.joelsson@oracle.com> -Date: Mon, 2 Nov 2020 06:18:08 -0800 -Subject: [PATCH] Add DoubleDollar call to protect java class file names with - dollar in them - ---- - make/common/JavaCompilation.gmk | 6 ++++-- - 1 file changed, 4 insertions(+), 2 deletions(-) - -diff --git a/make/common/JavaCompilation.gmk b/make/common/JavaCompilation.gmk -index 444ded0fc06..bedb971115b 100644 ---- a/make/common/JavaCompilation.gmk -+++ b/make/common/JavaCompilation.gmk -@@ -311,9 +311,11 @@ define SetupJavaCompilationBody - ifneq ($$($1_KEEP_DUPS), true) - # Remove duplicate source files by keeping the first found of each duplicate. - # This allows for automatic overrides with custom or platform specific versions -- # source files. -+ # source files. Need to call DoubleDollar as we have java classes with '$' in -+ # their names. - $1_SRCS := $$(strip $$(foreach s, $$($1_SRCS), \ -- $$(eval relative_src := $$(call remove-prefixes, $$($1_SRC), $$(s))) \ -+ $$(eval relative_src := $$(call remove-prefixes, $$($1_SRC), \ -+ $$(call DoubleDollar, $$(s)))) \ - $$(if $$($1_$$(relative_src)), \ - , \ - $$(eval $1_$$(relative_src) := 1) $$(s)))) |