diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-04-11 20:37:51 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-04-11 20:37:51 +0000 |
commit | 02a180ab6fd652b2498886b5cf481cf1649cf182 (patch) | |
tree | 5ac26bd6975a0e22076a45a443de04969a670c5a | |
parent | 4f2380b30fc4ce9b7ef3e67bd4ce4c0ca51b7952 (diff) | |
download | poky-02a180ab6fd652b2498886b5cf481cf1649cf182.tar.gz |
package.bbclass: unbreak
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4242 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/classes/package.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 74c6b53a45..97eae6e97f 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -657,6 +657,7 @@ python package_do_shlibs() { | |||
657 | for root, dirs, files in os.walk(top): | 657 | for root, dirs, files in os.walk(top): |
658 | for file in files: | 658 | for file in files: |
659 | soname = None | 659 | soname = None |
660 | path = os.path.join(root, file) | ||
660 | if targetos == "darwin": | 661 | if targetos == "darwin": |
661 | darwin_so(root, dirs, file) | 662 | darwin_so(root, dirs, file) |
662 | elif os.access(path, os.X_OK) or lib_re.match(file): | 663 | elif os.access(path, os.X_OK) or lib_re.match(file): |