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:
92e8875
)
distutils.bbclass: always install staging directory before calling python
author
Michael Lauer
<mickey@vanille-media.de>
Wed, 22 Aug 2007 13:47:30 +0000
(13:47 +0000)
committer
Michael Lauer
<mickey@vanille-media.de>
Wed, 22 Aug 2007 13:47:30 +0000
(13:47 +0000)
classes/distutils.bbclass
patch
|
blob
|
history
diff --git
a/classes/distutils.bbclass
b/classes/distutils.bbclass
index
8a34594
..
c07a991
100644
(file)
--- a/
classes/distutils.bbclass
+++ b/
classes/distutils.bbclass
@@
-13,7
+13,8
@@
distutils_stage_headers() {
}
distutils_stage_all() {
- PYTHONPATH=${STAGING_INCDIR}/../${PYTHON_DIR}/site-packages \
+ install -d ${STAGING_INCDIR}/../${PYTHON_DIR}/site-packages
+ PYTHONPATH=${STAGING_INCDIR}/../${PYTHON_DIR}/site-packages \
BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \
${STAGING_BINDIR_NATIVE}/python setup.py install --prefix=${STAGING_INCDIR}/.. --install-data=${STAGING_INCDIR}/../share || \
oefatal "python setup.py install (stage) execution failed."