diff options
author | Richard Purdie <richard@openedhand.com> | 2007-11-12 11:10:08 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-11-12 11:10:08 +0000 |
commit | b17670211a86799c101394dcaa7f1ed88758ddde (patch) | |
tree | 3fc555d85a85d4ad9e658a52316bab98aacf5f0a /meta/classes/tmake.bbclass | |
parent | 0e09147de182aeb96cff9ff59211b3d907ba83f7 (diff) | |
download | openembedded-core-b17670211a86799c101394dcaa7f1ed88758ddde.tar.gz openembedded-core-b17670211a86799c101394dcaa7f1ed88758ddde.tar.bz2 openembedded-core-b17670211a86799c101394dcaa7f1ed88758ddde.tar.xz openembedded-core-b17670211a86799c101394dcaa7f1ed88758ddde.zip |
Remove hardcoded staging layout assumptions
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3117 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/tmake.bbclass')
-rw-r--r-- | meta/classes/tmake.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/tmake.bbclass b/meta/classes/tmake.bbclass index 05b82e496..dbd0bf276 100644 --- a/meta/classes/tmake.bbclass +++ b/meta/classes/tmake.bbclass @@ -54,7 +54,7 @@ python tmake_do_createpro() { } tmake_do_configure() { - paths="${STAGING_DATADIR}/tmake/qws/${TARGET_OS}-${TARGET_ARCH}-g++ $STAGING_DIR/share/tmake/$OS-g++" + paths="${STAGING_DATADIR}/tmake/qws/${TARGET_OS}-${TARGET_ARCH}-g++ ${STAGING_DATADIR}/tmake/$OS-g++" if (echo "${TARGET_ARCH}"|grep -q 'i.86'); then paths="${STAGING_DATADIR}/tmake/qws/${TARGET_OS}-x86-g++ $paths" fi |