git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
16ddc0d
)
package.bbclass: fix some corner cases with the new package copy mechanism.
author
Mike Westerhof
<mwester@dls.net>
Sat, 17 Nov 2007 06:58:16 +0000
(06:58 +0000)
committer
Mike Westerhof
<mwester@dls.net>
Sat, 17 Nov 2007 06:58:16 +0000
(06:58 +0000)
- do not transform a symlink to a directory into a directory on copy
- preserve the mode when copying a directory
classes/package.bbclass
patch
|
blob
|
history
diff --git
a/classes/package.bbclass
b/classes/package.bbclass
index
ea94f89
..
6c61f7b
100644
(file)
--- a/
classes/package.bbclass
+++ b/
classes/package.bbclass
@@
-485,8
+485,9
@@
python populate_packages () {
if file in seen:
continue
seen.append(file)
- if os.path.isdir(file):
+ if os.path.isdir(file)
and not os.path.islink(file)
:
bb.mkdirhier(os.path.join(root,file))
+ os.chmod(os.path.join(root,file), os.stat(file).st_mode)
continue
fpath = os.path.join(root,file)
dpath = os.path.dirname(fpath)