summaryrefslogtreecommitdiffstats
path: root/recipes-core/icedtea/icedtea7-native.inc
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-core/icedtea/icedtea7-native.inc')
-rw-r--r--recipes-core/icedtea/icedtea7-native.inc23
1 files changed, 1 insertions, 22 deletions
diff --git a/recipes-core/icedtea/icedtea7-native.inc b/recipes-core/icedtea/icedtea7-native.inc
index 3344acb..d4c5c29 100644
--- a/recipes-core/icedtea/icedtea7-native.inc
+++ b/recipes-core/icedtea/icedtea7-native.inc
@@ -54,27 +54,8 @@ export ALT_FREETYPE_LIB_PATH = "${STAGING_LIBDIR}"
54# which is already stripped. 54# which is already stripped.
55INSANE_SKIP_${PN} = "already-stripped" 55INSANE_SKIP_${PN} = "already-stripped"
56 56
57# OpenJDK supports parallel compilation but uses a plain number for this.
58# In OE we have PARALLEL_MAKE which is the actual option passed to make,
59# e.g. "-j 4".
60ICEDTEA_PARALLEL_MAKE := "${PARALLEL_MAKE}"
61PARALLEL_MAKE = ""
62def get_jdk7_native_jobs(d):
63 import bb
64
65 pm = bb.data.getVar('ICEDTEA_PARALLEL_MAKE', d, 1);
66 if not pm:
67 return "1"
68
69 pm = pm.split("j");
70 if (len(pm) == 2):
71 return pm[1].strip()
72
73 # Whatever found in PARALLEL_MAKE was not suitable.
74 return "1"
75
76EXTRA_OECONF = "\ 57EXTRA_OECONF = "\
77 --with-parallel-jobs=${@get_jdk7_native_jobs(d)} \ 58 --with-parallel-jobs=${@java_get_parallel_make(d)} \
78 \ 59 \
79 --disable-tests \ 60 --disable-tests \
80 --disable-hotspot-tests \ 61 --disable-hotspot-tests \
@@ -273,5 +254,3 @@ do_install() {
273 # Fix missing write permissions on the files. 254 # Fix missing write permissions on the files.
274 chmod ug+w -R ${JDK_INSTALL_DIR} 255 chmod ug+w -R ${JDK_INSTALL_DIR}
275} 256}
276
277get_jdk7_native_jobs[vardepsexclude] += "ICEDTEA_PARALLEL_MAKE"