summaryrefslogtreecommitdiffstats
path: root/recipes-core/openjdk/openjdk-7-common.inc
diff options
context:
space:
mode:
authorAndré Draszik <andre.draszik@jci.com>2019-01-13 11:13:08 +0000
committerRichard Leitner <richard.leitner@skidata.com>2020-08-17 13:02:40 +0200
commit8f6374ef51eb0f4d2e85fbd6b546b9cee0bb954d (patch)
treeba8f325f8b8a29797950897d39e7074cf69c3902 /recipes-core/openjdk/openjdk-7-common.inc
parent3d2a7dc0360138e0e77c8251c24feb2486365a59 (diff)
downloadmeta-java-8f6374ef51eb0f4d2e85fbd6b546b9cee0bb954d.tar.gz
remove True option to getVar calls
getVar() has been defaulting to expanding by default for a long time (2016), thus remove the True option from getVar() calls with a regex search and replace. Search & replace made using the following command: sed -e 's|\(d\.getVar \?\)( \?\([^,()]*\), \?True)|\1(\2)|g' \ -i $(git grep -E 'getVar ?\( ?([^,()]*), ?True\)' \ | cut -d':' -f1 \ | sort -u) Signed-off-by: André Draszik <andre.draszik@jci.com> Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Diffstat (limited to 'recipes-core/openjdk/openjdk-7-common.inc')
-rw-r--r--recipes-core/openjdk/openjdk-7-common.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-core/openjdk/openjdk-7-common.inc b/recipes-core/openjdk/openjdk-7-common.inc
index 794bf58..d59a57a 100644
--- a/recipes-core/openjdk/openjdk-7-common.inc
+++ b/recipes-core/openjdk/openjdk-7-common.inc
@@ -93,7 +93,7 @@ export ALT_CUPS_HEADERS_PATH = "${STAGING_INCDIR}"
93export ALT_FREETYPE_HEADERS_PATH = "${STAGING_INCDIR}/freetype2" 93export ALT_FREETYPE_HEADERS_PATH = "${STAGING_INCDIR}/freetype2"
94export ALT_FREETYPE_LIB_PATH = "${STAGING_LIBDIR}" 94export ALT_FREETYPE_LIB_PATH = "${STAGING_LIBDIR}"
95export CACAO_CONFIGURE_ARGS = " \ 95export CACAO_CONFIGURE_ARGS = " \
96 ${@['','--enable-softfloat'][d.getVar('TARGET_FPU', True) == 'soft']}" 96 ${@['','--enable-softfloat'][d.getVar('TARGET_FPU') == 'soft']}"
97 97
98JAVA_HOME[unexport] = "1" 98JAVA_HOME[unexport] = "1"
99 99