diff options
author | Simon Frankenberger <simon@fraho.eu> | 2020-03-25 08:05:14 +0100 |
---|---|---|
committer | Rasmus Thomsen <oss@cogitri.dev> | 2020-03-25 12:41:14 +0000 |
commit | 1dac0e83f4cc792086d453befd08cca47888a07d (patch) | |
tree | 4023b1103001f0e0d72060d07ec727eef1fc1dda /community/openjdk10/make-4.3.patch | |
parent | d15675a7a0fc230ab4d248c581a64156b82ee123 (diff) | |
download | aports-1dac0e83f4cc792086d453befd08cca47888a07d.tar.bz2 aports-1dac0e83f4cc792086d453befd08cca47888a07d.tar.xz |
community/openjdk10: Cleanup and unify with other openjdk aports
Diffstat (limited to 'community/openjdk10/make-4.3.patch')
-rw-r--r-- | community/openjdk10/make-4.3.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/community/openjdk10/make-4.3.patch b/community/openjdk10/make-4.3.patch new file mode 100644 index 0000000000..eb4f69255c --- /dev/null +++ b/community/openjdk10/make-4.3.patch @@ -0,0 +1,17 @@ +upstream report: https://bugs.openjdk.java.net/browse/JDK-8237879. + +diff --git a/make/common/MakeBase.gmk b/make/common/MakeBase.gmk +index 170c3ed..697f9d2 100644 +--- a/make/common/MakeBase.gmk ++++ b/make/common/MakeBase.gmk +@@ -967,7 +967,9 @@ DependOnVariableHelper = \ + $(info NewVariable $1: >$(strip $($1))<) \ + $(info OldVariable $1: >$(strip $($1_old))<)) \ + $(call WriteFile, $1_old:=$(call DoubleDollar,$(call EscapeHash,$($1))), \ +- $(call DependOnVariableFileName, $1, $2))) \ ++ $(call DependOnVariableFileName, $1, $2)) \ ++ $(eval $(call DependOnVariableFileName, $1, $2): ) \ ++ ) \ + $(call DependOnVariableFileName, $1, $2) \ + ) + |