diff options
author | Christopher Larson <chris_larson@mentor.com> | 2016-04-27 19:04:53 +0530 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-05-06 12:38:33 +0200 |
commit | cdd326f7a61fdf02773a22bf8c5c099c58b205a9 (patch) | |
tree | bb16b259cfd761d833913f6178da3e72e9b7b254 /meta-oe/recipes-graphics/fbida | |
parent | e03e5d6688ad8e11bab3828cb8366f211fde9ebc (diff) | |
download | meta-openembedded-cdd326f7a61fdf02773a22bf8c5c099c58b205a9.tar.gz |
fbida: use separate builddir
Separate builddir from the sourcedir.
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Sujith H <sujith.h@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-graphics/fbida')
-rw-r--r-- | meta-oe/recipes-graphics/fbida/fbida_2.10.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-oe/recipes-graphics/fbida/fbida_2.10.bb b/meta-oe/recipes-graphics/fbida/fbida_2.10.bb index 8d3da69aa..c14fc9b68 100644 --- a/meta-oe/recipes-graphics/fbida/fbida_2.10.bb +++ b/meta-oe/recipes-graphics/fbida/fbida_2.10.bb | |||
@@ -14,7 +14,9 @@ SRC_URI = "https://www.kraxel.org/releases/fbida/fbida-${PV}.tar.gz" | |||
14 | SRC_URI[md5sum] = "09460b964b58c2e39b665498eca29018" | 14 | SRC_URI[md5sum] = "09460b964b58c2e39b665498eca29018" |
15 | SRC_URI[sha256sum] = "7a5a3aac61b40a6a2bbf716d270a46e2f8e8d5c97e314e927d41398a4d0b6cb6" | 15 | SRC_URI[sha256sum] = "7a5a3aac61b40a6a2bbf716d270a46e2f8e8d5c97e314e927d41398a4d0b6cb6" |
16 | 16 | ||
17 | EXTRA_OEMAKE = "STRIP=" | 17 | B = "${WORKDIR}/build" |
18 | |||
19 | EXTRA_OEMAKE = "STRIP= 'srcdir=${S}' -f ${S}/GNUmakefile" | ||
18 | 20 | ||
19 | PACKAGECONFIG ??= "gif png curl" | 21 | PACKAGECONFIG ??= "gif png curl" |
20 | PACKAGECONFIG[curl] = ",,curl" | 22 | PACKAGECONFIG[curl] = ",,curl" |
@@ -26,6 +28,7 @@ PACKAGECONFIG[webp] = ",,libwebp" | |||
26 | PACKAGECONFIG[lirc] = ",,lirc" | 28 | PACKAGECONFIG[lirc] = ",,lirc" |
27 | 29 | ||
28 | do_compile() { | 30 | do_compile() { |
31 | sed -i -e 's# fbgs# \$(srcdir)/fbgs#; s#-Ijpeg#-I\$(srcdir)/jpeg#; s# jpeg/# \$(srcdir)/jpeg/#' ${S}/GNUmakefile | ||
29 | sed -i -e 's:/sbin/ldconfig:echo x:' ${S}/mk/Autoconf.mk | 32 | sed -i -e 's:/sbin/ldconfig:echo x:' ${S}/mk/Autoconf.mk |
30 | sed -i -e 's: cpp: ${TARGET_PREFIX}cpp -I${STAGING_INCDIR}:' ${S}/GNUmakefile | 33 | sed -i -e 's: cpp: ${TARGET_PREFIX}cpp -I${STAGING_INCDIR}:' ${S}/GNUmakefile |
31 | 34 | ||