diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2012-03-01 23:52:04 +0100 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2012-03-01 23:54:42 +0100 |
commit | d430de31c167cd264be74a1d82af4b732bb915dd (patch) | |
tree | 97250fffff23eeb0ff3e4a9ee795f8e6321b4f42 | |
parent | 9f592667803ff915fc0764ffd8b46ec767af98d5 (diff) | |
download | meta-java-d430de31c167cd264be74a1d82af4b732bb915dd.tar.gz |
openjdk-6-common.inc: fix parallel_make python function
-rw-r--r-- | recipes-core/openjdk/openjdk-6-common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-core/openjdk/openjdk-6-common.inc b/recipes-core/openjdk/openjdk-6-common.inc index ae6a820..4aea61e 100644 --- a/recipes-core/openjdk/openjdk-6-common.inc +++ b/recipes-core/openjdk/openjdk-6-common.inc | |||
@@ -127,7 +127,7 @@ def get_jdk_jobs(d): | |||
127 | if not pm: | 127 | if not pm: |
128 | return "1" | 128 | return "1" |
129 | 129 | ||
130 | pm = pm.split(" "); | 130 | pm = pm.split("j"); |
131 | if (len(pm) == 2): | 131 | if (len(pm) == 2): |
132 | return pm[1] | 132 | return pm[1] |
133 | 133 | ||