diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2013-05-02 06:04:20 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-05-03 16:12:03 +0200 |
commit | c90d009eb40d0610583346c0ba19264377d50c5e (patch) | |
tree | 231b0d07923a286bbec6e2203ef14a7cb82f8ac2 /meta-multimedia/recipes-mediacentre/xbmc/xbmc_git.bb | |
parent | 6dc8ea3a38dd13507a6558406e4aeebf1b048e76 (diff) | |
download | meta-openembedded-contrib-c90d009eb40d0610583346c0ba19264377d50c5e.tar.gz |
xbmc: add patch to make 'ld-is-gold' work with configure
The custom XBMC XB_FIND_SONAME macro doesn't work with the gold linker, backport a patch to fix it
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-mediacentre/xbmc/xbmc_git.bb')
-rw-r--r-- | meta-multimedia/recipes-mediacentre/xbmc/xbmc_git.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-mediacentre/xbmc/xbmc_git.bb b/meta-multimedia/recipes-mediacentre/xbmc/xbmc_git.bb index 60534895971..e6600c1e5a0 100644 --- a/meta-multimedia/recipes-mediacentre/xbmc/xbmc_git.bb +++ b/meta-multimedia/recipes-mediacentre/xbmc/xbmc_git.bb @@ -15,6 +15,7 @@ SRC_URI = "git://github.com/xbmc/xbmc.git;branch=eden;protocol=git \ file://0001-configure-don-t-run-python-distutils-to-find-STAGING.patch \ file://0002-Revert-fixed-ios-Add-memory-barriers-to-atomic-Add-S.patch \ file://0003-Revert-fixed-ios-Add-memory-barriers-to-cas-assembly.patch \ + file://0004-configure-cope-with-ld-is-gold-DISTRO_FEATURE.patch \ file://configure.in-Avoid-running-code.patch \ " @@ -22,6 +23,9 @@ inherit autotools gettext python-dir S = "${WORKDIR}/git" +# breaks compilation +CCACHE = "" + CACHED_CONFIGUREVARS += " \ ac_cv_path_PYTHON="${STAGING_BINDIR_NATIVE}/python-native/python" \ " |