summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libsdl-ttf
diff options
context:
space:
mode:
authorMarko Lindqvist <cazfi74@gmail.com>2014-06-15 04:25:20 +0300
committerMartin Jansa <Martin.Jansa@gmail.com>2014-06-21 10:32:31 +0200
commitd12abd8fea19d2c0b80dfc31b09c4cb7bbfacb0b (patch)
tree04b82a44d60421d7f4877c279a55a1322fdab63e /meta-oe/recipes-support/libsdl-ttf
parent497dc74fb3cc755c30cf554a59b458a117cdb072 (diff)
downloadmeta-openembedded-d12abd8fea19d2c0b80dfc31b09c4cb7bbfacb0b.tar.gz
libsdl-ttf: Fix build with separate builddir
Do not assume that sources are in the current directory in do_configure_prepend() but refer to them with path to source directory. Signed-off-by: Marko Lindqvist <cazfi74@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libsdl-ttf')
-rw-r--r--meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.10.bb9
1 files changed, 5 insertions, 4 deletions
diff --git a/meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.10.bb b/meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.10.bb
index c6e5a15ff..0127b3181 100644
--- a/meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.10.bb
+++ b/meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.10.bb
@@ -4,7 +4,7 @@ DEPENDS = "virtual/libsdl freetype"
4LICENSE = "LGPLv2.1" 4LICENSE = "LGPLv2.1"
5LIC_FILES_CHKSUM = "file://COPYING;md5=27818cd7fd83877a8e3ef82b82798ef4" 5LIC_FILES_CHKSUM = "file://COPYING;md5=27818cd7fd83877a8e3ef82b82798ef4"
6 6
7PR = "r1" 7PR = "r2"
8 8
9SRC_URI = "http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-${PV}.tar.gz \ 9SRC_URI = "http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-${PV}.tar.gz \
10 file://configure.patch \ 10 file://configure.patch \
@@ -18,11 +18,12 @@ inherit autotools
18TARGET_CC_ARCH += "${LDFLAGS}" 18TARGET_CC_ARCH += "${LDFLAGS}"
19 19
20do_configure_prepend() { 20do_configure_prepend() {
21 21
22 # Removing these files fixes a libtool version mismatch.
22 MACROS="libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4" 23 MACROS="libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4"
23 24
24 for i in ${MACROS}; do 25 for i in ${MACROS}; do
25 rm acinclude/$i 26 rm ${S}/acinclude/$i
26 done 27 done
27 28
28} 29}