summaryrefslogtreecommitdiff
path: root/classes/package.bbclass
diff options
context:
space:
mode:
authorJohn Bowler <jbowler@nslu2-linux.org>2006-01-30 00:21:37 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-01-30 00:21:37 +0000
commitd147900a4c35dd78cebf1349e7912554a2a5f59f (patch)
tree130fe970f482404777e0e42af79cb3211fdcfa86 /classes/package.bbclass
parentea748f84046d22252abe8a5a6d160a73bcb2e92f (diff)
parent86508c7c6b59825f8a82361794beee0eac46dc6e (diff)
merge of 45de09dab54a555a9dcd180a4903909773cf34d2
and e4d8da41e5409080382f7a87c16b20bcc29516e3
Diffstat (limited to 'classes/package.bbclass')
-rw-r--r--classes/package.bbclass7
1 files changed, 6 insertions, 1 deletions
diff --git a/classes/package.bbclass b/classes/package.bbclass
index db479d5847..dbb65cdf06 100644
--- a/classes/package.bbclass
+++ b/classes/package.bbclass
@@ -166,7 +166,12 @@ python populate_packages () {
dpath = os.path.dirname(fpath)
bb.mkdirhier(dpath)
if (bb.data.getVar('INHIBIT_PACKAGE_STRIP', d, 1) != '1') and not os.path.islink(file) and isexec(file):
- stripfunc += "${STRIP} %s || : ;\n" % fpath
+ if bb.data.getVar('IGNORE_STRIP_ERRORS', d, 1) != '1':
+ # bail out on errors
+ stripfunc += "file %s | grep -q 'not stripped' && ${STRIP} %s || return 1;\n" % (fpath, fpath)
+ else:
+ # old behaviour: ignore errors
+ stripfunc += "${STRIP} %s || : ;\n" % fpath
ret = bb.movefile(file,fpath)
if ret is None or ret == 0:
raise bb.build.FuncFailed("File population failed")