summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew McClain <mmcclain@uplogix.com>2018-07-18 13:12:59 -0500
committerRichard Leitner <richard.leitner@skidata.com>2018-07-31 10:26:49 +0200
commitc3dc179b0a3c8ce43ae6b7086b04d76815021451 (patch)
treea57a9d31705883431dbfe77704f17ac5e5a0cf96
parentd53ab6a31dfb95b9b38c6e0e0b4199de39968a05 (diff)
downloadmeta-java-c3dc179b0a3c8ce43ae6b7086b04d76815021451.tar.gz
openjdk-8: 'do_unpack_remove_X11_wrappers' confuses pyro bitbake parser
When building without X11 support on the sumo or master branches of meta-java with the pyro branch of poky, meta-oe, etc, the recipe fails to parse. Renaming the function to anything else allows the recipe to be parsed. The problem appears to be the word "_remove_". Signed-off-by: Matthew McClain <mmcclain@uplogix.com> Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
-rw-r--r--recipes-core/openjdk/openjdk-8-common.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-core/openjdk/openjdk-8-common.inc b/recipes-core/openjdk/openjdk-8-common.inc
index 0af320d..6bd9e72 100644
--- a/recipes-core/openjdk/openjdk-8-common.inc
+++ b/recipes-core/openjdk/openjdk-8-common.inc
@@ -39,7 +39,7 @@ do_unpack_extract_submodules () {
39 tar xjf ${WORKDIR}/${NASHORN_FILE_LOCAL} --transform "s,-${NASHORN_CHANGESET},,g" 39 tar xjf ${WORKDIR}/${NASHORN_FILE_LOCAL} --transform "s,-${NASHORN_CHANGESET},,g"
40} 40}
41 41
42do_unpack_remove_X11_wrappers() { 42do_unpack_delete_X11_wrappers() {
43 find ${S}/jdk/src/solaris/classes/sun/awt/X11 -maxdepth 1 -name '*.java' -delete 43 find ${S}/jdk/src/solaris/classes/sun/awt/X11 -maxdepth 1 -name '*.java' -delete
44} 44}
45 45
@@ -153,7 +153,7 @@ def jdk_configure_options(d):
153 return options[3] 153 return options[3]
154 154
155do_unpack[postfuncs] += "do_unpack_extract_submodules" 155do_unpack[postfuncs] += "do_unpack_extract_submodules"
156do_unpack[postfuncs] += "${@bb.utils.contains('PACKAGECONFIG', 'x11', '', 'do_unpack_remove_X11_wrappers', d)}" 156do_unpack[postfuncs] += "${@bb.utils.contains('PACKAGECONFIG', 'x11', '', 'do_unpack_delete_X11_wrappers', d)}"
157 157
158do_configure_prepend() { 158do_configure_prepend() {
159 export ${@jdk_environment_options(d)} 159 export ${@jdk_environment_options(d)}