summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/archiver.bbclass5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/archiver.bbclass b/meta/classes/archiver.bbclass
index 900268971c..dd31dc0cd8 100644
--- a/meta/classes/archiver.bbclass
+++ b/meta/classes/archiver.bbclass
@@ -281,7 +281,10 @@ python do_ar_configured() {
281 # ${STAGING_DATADIR}/aclocal/libtool.m4, so we can't re-run the 281 # ${STAGING_DATADIR}/aclocal/libtool.m4, so we can't re-run the
282 # do_configure, we archive the already configured ${S} to 282 # do_configure, we archive the already configured ${S} to
283 # instead of. 283 # instead of.
284 elif pn != 'libtool-native': 284 # The kernel class functions require it to be on work-shared, we
285 # don't unpack, patch, configure again, just archive the already
286 # configured ${S}
287 elif not (pn == 'libtool-native' or is_work_shared(d)):
285 def runTask(task): 288 def runTask(task):
286 prefuncs = d.getVarFlag(task, 'prefuncs') or '' 289 prefuncs = d.getVarFlag(task, 'prefuncs') or ''
287 for func in prefuncs.split(): 290 for func in prefuncs.split():