diff options
author | Richard Purdie <richard@openedhand.com> | 2007-12-19 10:32:12 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-12-19 10:32:12 +0000 |
commit | 6480e3a2f6c0363efe336854476c38767b5d636a (patch) | |
tree | b5d2da444d7975016a5bc19c2ce56d086ead9c39 /meta/classes | |
parent | 34927dfa61c696442f297c284d546e443ed21485 (diff) | |
download | poky-6480e3a2f6c0363efe336854476c38767b5d636a.tar.gz |
package.bbclass: Don't strip files in .debug directories
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3346 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/package.bbclass | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 514adfad44..5b1a7cf28a 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -149,6 +149,12 @@ def runstrip(file, d): | |||
149 | bb.debug(1, "runstrip: skip %s" % file) | 149 | bb.debug(1, "runstrip: skip %s" % file) |
150 | return 0 | 150 | return 0 |
151 | 151 | ||
152 | # If the file is in a .debug directory it was already stripped, | ||
153 | # don't do it again... | ||
154 | if os.path.dirname(file).endswith(".debug"): | ||
155 | bb.note("Already run strip") | ||
156 | return 0 | ||
157 | |||
152 | strip = bb.data.getVar("STRIP", d, 1) | 158 | strip = bb.data.getVar("STRIP", d, 1) |
153 | objcopy = bb.data.getVar("OBJCOPY", d, 1) | 159 | objcopy = bb.data.getVar("OBJCOPY", d, 1) |
154 | 160 | ||