summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-16 22:08:18 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-16 22:14:23 +0100
commit15b16060c76bbdcc3dec37cab389aed64d4fdd1d (patch)
tree6e1c87eecf5bfdf45823610ba2da22d865597142
parent5326847ef821c382aac26b474ab0e35939c463b7 (diff)
downloadpoky-15b16060c76bbdcc3dec37cab389aed64d4fdd1d.tar.gz
autogen-native: Fix sstate relocation issue when reusing libguile
This was found to cause issues on the Yocto autobuilders and fixes do_compile failures when guile-native has been relocated. (From OE-Core rev: d928e91a57e6e9dfa6a7d4e888e1e1064d7fc668) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/autogen/autogen-native_5.12.bb13
1 files changed, 12 insertions, 1 deletions
diff --git a/meta/recipes-devtools/autogen/autogen-native_5.12.bb b/meta/recipes-devtools/autogen/autogen-native_5.12.bb
index cdf1ea9b19..eb3721d087 100644
--- a/meta/recipes-devtools/autogen/autogen-native_5.12.bb
+++ b/meta/recipes-devtools/autogen/autogen-native_5.12.bb
@@ -13,7 +13,7 @@ SRC_URI = "${GNU_MIRROR}/autogen/rel${PV}/autogen-${PV}.tar.gz"
13SRC_URI[md5sum] = "6c6671b76021fb30dd43b0d5fdb7180b" 13SRC_URI[md5sum] = "6c6671b76021fb30dd43b0d5fdb7180b"
14SRC_URI[sha256sum] = "37e885d6c8a58f33ab198d38bb972fa4c14236f951d628161dde6e20527d0df2" 14SRC_URI[sha256sum] = "37e885d6c8a58f33ab198d38bb972fa4c14236f951d628161dde6e20527d0df2"
15 15
16PR = "r1" 16PR = "r2"
17 17
18DEPENDS = "guile-native libtool-native libxml2-native" 18DEPENDS = "guile-native libtool-native libxml2-native"
19RDEPENDS = "automake pkgconfig" 19RDEPENDS = "automake pkgconfig"
@@ -22,3 +22,14 @@ inherit autotools native
22 22
23# Following line will be needed for the non-native target recipe. 23# Following line will be needed for the non-native target recipe.
24#CFLAGS += "-L${STAGING_LIBDIR} -lguile-2.0 -lgc -pthread -I${STAGING_INCDIR}/guile/2.0 -I${STAGING_INCDIR}" 24#CFLAGS += "-L${STAGING_LIBDIR} -lguile-2.0 -lgc -pthread -I${STAGING_INCDIR}/guile/2.0 -I${STAGING_INCDIR}"
25
26# autogen-native links against libguile which may have been relocated with sstate
27# these environment variables ensure there isn't a relocation issue
28export GUILE_LOAD_PATH = "${STAGING_DATADIR_NATIVE}/guile/2.0"
29export GUILE_LOAD_COMPILED_PATH = "${STAGING_LIBDIR_NATIVE}/guile/2.0/ccache"
30
31do_install_append () {
32 create_wrapper ${D}/${bindir}/autogen \
33 GUILE_LOAD_PATH=${STAGING_DATADIR_NATIVE}/guile/2.0 \
34 GUILE_LOAD_COMPILED_PATH=${STAGING_LIBDIR_NATIVE}/guile/2.0/ccache
35}