diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-10-06 15:01:33 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-14 16:55:24 +0100 |
commit | f33afade31d2ac2f5457f4131c2c35207606b846 (patch) | |
tree | e04f5b372e5794c02293462f3ccfa889b10f769a /meta/conf | |
parent | 049627735f3fa9aa85701d5257324260eec951aa (diff) | |
download | poky-f33afade31d2ac2f5457f4131c2c35207606b846.tar.gz |
bitbake.conf: Remove double slash from PATH_prepend and PKG_CONFIG_DIR
* we correctly have
${STAGING_DIR_NATIVE}${base_sbindir_native}
and then double slash in
${STAGING_DIR_NATIVE}/${base_bindir_native}
* similar in PKG_CONFIG_DIR where libdir also starts with slash
${STAGING_DIR_HOST}/${libdir}/pkgconfig
* also fix double slash in insane.bbclass and staging.bbclass
* I was a bit nervous about staging change (in case the / was important
in some weird use-case, but the extra slash is there since following
commit where other extra slashes were removed only the one before
libdir was kept:
commit 6ea78d648951e5bbe9669412c0863daaf7f49ca5
Author: Richard Purdie <rpurdie@linux.intel.com>
Date: Mon Nov 2 17:10:51 2009 +0000
autotools.bbclass: Separate out useful staging functions into
base.bbclass and call from autotools classes
* this isn't fixing any real-world issue AFAIK, I was just trying to
debug one weird case where debugedit fails with
canonicalization unexpectedly shrank by one character
and it's easier to grep for '//' without many harmless instances
already in run* scripts etc
(From OE-Core rev: 0ddaf52e9e344986ae2b016cc068d9eee71b4347)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/bitbake.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 47d2171775..5146808cde 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -426,7 +426,7 @@ EXTRA_IMAGEDEPENDS = "" | |||
426 | # Toolchain info. | 426 | # Toolchain info. |
427 | ################################################################## | 427 | ################################################################## |
428 | 428 | ||
429 | PATH_prepend = "${COREBASE}/scripts:${STAGING_BINDIR_TOOLCHAIN}:${STAGING_BINDIR_CROSS}:${STAGING_DIR_NATIVE}${sbindir_native}:${STAGING_BINDIR_NATIVE}:${STAGING_DIR_NATIVE}${base_sbindir_native}:${STAGING_DIR_NATIVE}/${base_bindir_native}:" | 429 | PATH_prepend = "${COREBASE}/scripts:${STAGING_BINDIR_TOOLCHAIN}:${STAGING_BINDIR_CROSS}:${STAGING_DIR_NATIVE}${sbindir_native}:${STAGING_BINDIR_NATIVE}:${STAGING_DIR_NATIVE}${base_sbindir_native}:${STAGING_DIR_NATIVE}${base_bindir_native}:" |
430 | export PATH | 430 | export PATH |
431 | 431 | ||
432 | ################################################################## | 432 | ################################################################## |
@@ -643,7 +643,7 @@ BUILDCFG_NEEDEDVARS[type] = "list" | |||
643 | 643 | ||
644 | # Other | 644 | # Other |
645 | 645 | ||
646 | export PKG_CONFIG_DIR = "${STAGING_DIR_HOST}/${libdir}/pkgconfig" | 646 | export PKG_CONFIG_DIR = "${STAGING_DIR_HOST}${libdir}/pkgconfig" |
647 | export PKG_CONFIG_PATH = "${PKG_CONFIG_DIR}:${STAGING_DATADIR}/pkgconfig" | 647 | export PKG_CONFIG_PATH = "${PKG_CONFIG_DIR}:${STAGING_DATADIR}/pkgconfig" |
648 | export PKG_CONFIG_LIBDIR = "${PKG_CONFIG_DIR}" | 648 | export PKG_CONFIG_LIBDIR = "${PKG_CONFIG_DIR}" |
649 | export PKG_CONFIG_SYSROOT_DIR = "${STAGING_DIR_HOST}" | 649 | export PKG_CONFIG_SYSROOT_DIR = "${STAGING_DIR_HOST}" |