summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2017-04-07 23:36:46 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2017-04-18 14:21:40 +0200
commit56c956f6c0f366dadfdece4933548dcd3b2b9fc9 (patch)
treea3712e3d265946fb5706ee7cc0297263fdec3fa2 /meta-oe
parent104f811a096af0f4a2ddf4359df3fa10d9dd1709 (diff)
downloadmeta-openembedded-56c956f6c0f366dadfdece4933548dcd3b2b9fc9.tar.gz
fbida: Fix compile-host-path error
Remove the explicit reference to /usr/local/* in Variables.mk. This is completely bogus and causes failure during cross-compilation. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-graphics/fbida/fbida_2.10.bb4
-rw-r--r--meta-oe/recipes-graphics/fbida/files/0001-Avoid-using-host-path.patch34
2 files changed, 37 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 2322476c7..eb31f7b73 100644
--- a/meta-oe/recipes-graphics/fbida/fbida_2.10.bb
+++ b/meta-oe/recipes-graphics/fbida/fbida_2.10.bb
@@ -10,7 +10,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
10 10
11DEPENDS = "virtual/libiconv jpeg fontconfig freetype libexif" 11DEPENDS = "virtual/libiconv jpeg fontconfig freetype libexif"
12 12
13SRC_URI = "https://www.kraxel.org/releases/fbida/fbida-${PV}.tar.gz" 13SRC_URI = "https://www.kraxel.org/releases/fbida/fbida-${PV}.tar.gz \
14 file://0001-Avoid-using-host-path.patch \
15 "
14SRC_URI[md5sum] = "09460b964b58c2e39b665498eca29018" 16SRC_URI[md5sum] = "09460b964b58c2e39b665498eca29018"
15SRC_URI[sha256sum] = "7a5a3aac61b40a6a2bbf716d270a46e2f8e8d5c97e314e927d41398a4d0b6cb6" 17SRC_URI[sha256sum] = "7a5a3aac61b40a6a2bbf716d270a46e2f8e8d5c97e314e927d41398a4d0b6cb6"
16 18
diff --git a/meta-oe/recipes-graphics/fbida/files/0001-Avoid-using-host-path.patch b/meta-oe/recipes-graphics/fbida/files/0001-Avoid-using-host-path.patch
new file mode 100644
index 000000000..cdf2c25d3
--- /dev/null
+++ b/meta-oe/recipes-graphics/fbida/files/0001-Avoid-using-host-path.patch
@@ -0,0 +1,34 @@
1From 8d8fa9f22d9f6a95523bac63ac3af724faf5ff92 Mon Sep 17 00:00:00 2001
2From: Marek Vasut <marex@denx.de>
3Date: Fri, 7 Apr 2017 23:26:09 +0200
4Subject: [PATCH] Avoid using host-path
5
6Remove the explicit reference to /usr/local/* , this is completely
7bogus and causes trouble during cross-compilation.
8
9Signed-off-by: Marek Vasut <marex@denx.de>
10Upstream-Status: Inappropriate [upstream requires this]
11---
12 mk/Variables.mk | 6 ------
13 1 file changed, 6 deletions(-)
14
15diff --git a/mk/Variables.mk b/mk/Variables.mk
16index 99f787c..3ffd87a 100644
17--- a/mk/Variables.mk
18+++ b/mk/Variables.mk
19@@ -42,12 +42,6 @@ CFLAGS += -Wall -Wmissing-prototypes -Wstrict-prototypes \
20 -Wpointer-arith -Wunused
21 CXXFLAGS += -Wall -Wpointer-arith -Wunused
22
23-# add /usr/local to the search path if something is in there ...
24-ifneq ($(wildcard /usr/local/include/*.h),)
25- CFLAGS += -I/usr/local/include
26- LDFLAGS += -L/usr/local/$(LIB)
27-endif
28-
29 # fixup include path for $(srcdir) != "."
30 ifneq ($(srcdir),.)
31 CFLAGS += -I. -I$(srcdir)
32--
332.11.0
34