diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-02-09 11:58:02 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-09 11:07:37 +0000 |
commit | a20600d4bb5d853fa9a0953ffbf3706d3f3d6ed6 (patch) | |
tree | 37010c7d54b7cf14334168d0b026c55e89ac6796 /meta/conf/bitbake.conf | |
parent | 29ed2c6e9a0c3cc57c5bbaf3c53e1cff8586c51c (diff) | |
download | poky-a20600d4bb5d853fa9a0953ffbf3706d3f3d6ed6.tar.gz |
bitbake.conf: fix SDK_NAME
It was using a '/' in a name variable, subtly breaking things like this:
populate_sdk.bbclass:
mkdir -p ${SDK_DEPLOY}
cd ${SDK_OUTPUT}
tar --owner=root --group=root -cj --file=${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.tar.bz2 .
Tar will error out since SDK_DEPLOY/DISTRO/ doesn't exist. Change the default to be more like the one from poky.conf, without the poky specific POKYLIBC.
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 7368097e24..da50fe5c4b 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -321,7 +321,7 @@ DEPLOY_DIR_TOOLS = "${DEPLOY_DIR}/tools" | |||
321 | 321 | ||
322 | PKGDATA_DIR = "${TMPDIR}/pkgdata/${MULTIMACH_TARGET_SYS}" | 322 | PKGDATA_DIR = "${TMPDIR}/pkgdata/${MULTIMACH_TARGET_SYS}" |
323 | 323 | ||
324 | SDK_NAME = "${DISTRO}/${TARGET_ARCH}" | 324 | SDK_NAME = "${DISTRO}-${SDK_ARCH}-${TARGET_ARCH}" |
325 | SDKPATH = "/usr/local/${SDK_NAME}" | 325 | SDKPATH = "/usr/local/${SDK_NAME}" |
326 | SDKPATHNATIVE = "${SDKPATH}/sysroots/${SDK_SYS}" | 326 | SDKPATHNATIVE = "${SDKPATH}/sysroots/${SDK_SYS}" |
327 | 327 | ||