summaryrefslogtreecommitdiffstats
path: root/meta/classes/image.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-08-01 11:25:15 +0000
committerRichard Purdie <richard@openedhand.com>2007-08-01 11:25:15 +0000
commitef8532ad2ee1d4715755ea8c11410bb656cf7e5a (patch)
treeaafd82cf9ff024be5b96cf307f1f831c29c24bc2 /meta/classes/image.bbclass
parent09e3f98f7e64fe07159b6326bfcf586e29c59b46 (diff)
downloadpoky-ef8532ad2ee1d4715755ea8c11410bb656cf7e5a.tar.gz
image.bbclass: Ensure the system python is used, not the one in staging
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2250 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r--meta/classes/image.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index cbdc29914e..f33108d094 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -70,9 +70,9 @@ fakeroot do_rootfs () {
70 70
71 for type in ${IMAGE_FSTYPES}; do 71 for type in ${IMAGE_FSTYPES}; do
72 if test -z "$FAKEROOTKEY"; then 72 if test -z "$FAKEROOTKEY"; then
73 fakeroot -i ${TMPDIR}/fakedb.image bbimage -t $type -e ${FILE} 73 fakeroot -i ${TMPDIR}/fakedb.image ${PYTHON} `which bbimage` -t $type -e ${FILE}
74 else 74 else
75 bbimage -n "${IMAGE_NAME}" -t "$type" -e "${FILE}" 75 ${PYTHON} `which bbimage` -n "${IMAGE_NAME}" -t "$type" -e "${FILE}"
76 fi 76 fi
77 77
78 cd ${DEPLOY_DIR_IMAGE}/ 78 cd ${DEPLOY_DIR_IMAGE}/