openjdk10-bootstrap: fix build
This commit is contained in:
parent
675fd30ab4
commit
d307d9ea9a
|
@ -0,0 +1,20 @@
|
|||
Subject: Fix build error with make >= 4.3
|
||||
Upstream: Yes
|
||||
Upstream-Url: https://bugs.openjdk.java.net/browse/JDK-8237879
|
||||
Author: Simon Frankenberger <simon-alpine@fraho.eu>
|
||||
|
||||
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) \
|
||||
)
|
||||
|
Loading…
Reference in New Issue