diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2017-05-03 23:13:38 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-05-11 16:55:59 +0100 |
commit | 439bb8cc711799b45a7f14dc8bcb1d524d993ab2 (patch) | |
tree | bc32469f2430d7ba41aedaba6124956fcd3e4062 /meta/recipes-devtools/guile | |
parent | 3e655f9c7f0f4f778dc9eedd9f7405fc84b4c9ad (diff) | |
download | poky-439bb8cc711799b45a7f14dc8bcb1d524d993ab2.tar.gz |
bitbake.conf: Add COMPONENTS_DIR for ${STAGING_DIR}-components
The path to where to install and find the sysroot components is used
in many places. This warrants it to get its own variable.
(From OE-Core rev: 70a84b525470f72339568409daf84845904e4cab)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/guile')
-rw-r--r-- | meta/recipes-devtools/guile/guile_2.0.14.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/guile/guile_2.0.14.bb b/meta/recipes-devtools/guile/guile_2.0.14.bb index 7a36ba0c3b..7a01d0ffc9 100644 --- a/meta/recipes-devtools/guile/guile_2.0.14.bb +++ b/meta/recipes-devtools/guile/guile_2.0.14.bb | |||
@@ -111,8 +111,8 @@ guile_cross_config() { | |||
111 | # auto-compile into the prefix even if it can write there, so touch them here as | 111 | # auto-compile into the prefix even if it can write there, so touch them here as |
112 | # sysroot is managed. | 112 | # sysroot is managed. |
113 | SSTATEPOSTINSTFUNCS += "guile_sstate_postinst" | 113 | SSTATEPOSTINSTFUNCS += "guile_sstate_postinst" |
114 | GUILESSTATEDIR = "${STAGING_DIR}-components/${TUNE_PKGARCH}/${PN}/${libdir}/guile/2.0/ccache" | 114 | GUILESSTATEDIR = "${COMPONENTS_DIR}/${TUNE_PKGARCH}/${PN}/${libdir}/guile/2.0/ccache" |
115 | GUILESSTATEDIR_class-native = "${STAGING_DIR}-components/${BUILD_ARCH}/${PN}/${libdir_native}/guile/2.0/ccache" | 115 | GUILESSTATEDIR_class-native = "${COMPONENTS_DIR}/${BUILD_ARCH}/${PN}/${libdir_native}/guile/2.0/ccache" |
116 | guile_sstate_postinst() { | 116 | guile_sstate_postinst() { |
117 | if [ "${BB_CURRENTTASK}" = "populate_sysroot" -o "${BB_CURRENTTASK}" = "populate_sysroot_setscene" ] | 117 | if [ "${BB_CURRENTTASK}" = "populate_sysroot" -o "${BB_CURRENTTASK}" = "populate_sysroot_setscene" ] |
118 | then | 118 | then |