diff options
Diffstat (limited to 'meta/recipes-devtools/guile')
-rw-r--r-- | meta/recipes-devtools/guile/guile_2.0.13.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-devtools/guile/guile_2.0.13.bb b/meta/recipes-devtools/guile/guile_2.0.13.bb index dd38b47993..c29e752859 100644 --- a/meta/recipes-devtools/guile/guile_2.0.13.bb +++ b/meta/recipes-devtools/guile/guile_2.0.13.bb | |||
@@ -108,10 +108,12 @@ guile_cross_config() { | |||
108 | # auto-compile into the prefix even if it can write there, so touch them here as | 108 | # auto-compile into the prefix even if it can write there, so touch them here as |
109 | # sysroot is managed. | 109 | # sysroot is managed. |
110 | SSTATEPOSTINSTFUNCS += "guile_sstate_postinst" | 110 | SSTATEPOSTINSTFUNCS += "guile_sstate_postinst" |
111 | GUILESSTATEDIR = "${STAGING_DIR}-components/${TUNE_PKGARCH}/${PN}/${libdir}/guile/2.0/ccache" | ||
112 | GUILESSTATEDIR_class-native = "${STAGING_DIR}-components/${BUILD_ARCH}/${PN}/${libdir_native}/guile/2.0/ccache" | ||
111 | guile_sstate_postinst() { | 113 | guile_sstate_postinst() { |
112 | if [ "${BB_CURRENTTASK}" = "populate_sysroot" -o "${BB_CURRENTTASK}" = "populate_sysroot_setscene" ] | 114 | if [ "${BB_CURRENTTASK}" = "populate_sysroot" -o "${BB_CURRENTTASK}" = "populate_sysroot_setscene" ] |
113 | then | 115 | then |
114 | find ${STAGING_DIR_TARGET}/${libdir}/guile/2.0/ccache -type f | xargs touch | 116 | find ${GUILESSTATEDIR} -type f | xargs touch |
115 | fi | 117 | fi |
116 | } | 118 | } |
117 | 119 | ||