diff options
| author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-12-19 11:38:30 +0000 |
|---|---|---|
| committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-12-19 11:38:30 +0000 |
| commit | d7cdf8cc805a48bcb9f5dcf9de47ceaac4d35de3 (patch) | |
| tree | 4febbb4f1f546d043d65014ebcc8ba45ff95eaa6 /classes | |
| parent | a44b2bebc20265955dba5df4c37824671b4d540f (diff) | |
| parent | 2fb453a9f4c045a6c74fccc81c1af8bf1e471ba7 (diff) | |
merge of '5a00df302fa5f0bd27e8591c24d944d935e7a4e9'
and 'a63f4a9ad21022afe5e9835d5f44018f136084e1'
Diffstat (limited to 'classes')
| -rw-r--r-- | classes/package.bbclass | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/classes/package.bbclass b/classes/package.bbclass index 37b9d83d97..ec8c3d97e2 100644 --- a/classes/package.bbclass +++ b/classes/package.bbclass @@ -149,6 +149,12 @@ def runstrip(file, d): bb.debug(1, "runstrip: skip %s" % file) return 0 + # If the file is in a .debug directory it was already stripped, + # don't do it again... + if os.path.dirname(file).endswith(".debug"): + bb.note("Already run strip") + return 0 + strip = bb.data.getVar("STRIP", d, 1) objcopy = bb.data.getVar("OBJCOPY", d, 1) |
