aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/directfb/directfb/bashism.patch
diff options
context:
space:
mode:
authorMaxin B. John <maxin.john@intel.com>2016-07-01 14:13:11 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-10 14:12:07 +0100
commita30f259537fa99e71d8d93662988233e36373611 (patch)
treee2d7bdda2b83b6d45c1d096e9bc421645b2507b4 /meta/recipes-graphics/directfb/directfb/bashism.patch
parent2d8fda36ecfa1945f22b7139a2febd12ec59272b (diff)
downloadopenembedded-core-contrib-a30f259537fa99e71d8d93662988233e36373611.tar.gz
move directfb from oe-core
Remove the directfb recipe as we are moving directfb out of oe-core [YOCTO #8489] Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-graphics/directfb/directfb/bashism.patch')
-rw-r--r--meta/recipes-graphics/directfb/directfb/bashism.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/meta/recipes-graphics/directfb/directfb/bashism.patch b/meta/recipes-graphics/directfb/directfb/bashism.patch
deleted file mode 100644
index 2ef4e93853..0000000000
--- a/meta/recipes-graphics/directfb/directfb/bashism.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-${x//y/} is a bash syntax. Replace with something dash compatible
-
-RP 2015/5/3
-Upstream-Status: Pending
-
-Index: DirectFB-1.7.7/configure.in
-===================================================================
---- DirectFB-1.7.7.orig/configure.in
-+++ DirectFB-1.7.7/configure.in
-@@ -2696,7 +2696,7 @@ AM_CONDITIONAL(BUILD_TOOLS, test "$with_
- AM_CONDITIONAL(CROSS_COMPILING, test "$cross_compiling" = "yes")
-
- CFLAGS="$CFLAGS $DFB_INTERNAL_CFLAGS"
--CXXFLAGS="$CXXFLAGS ${CFLAGS//-Werror-implicit-function-declaration/}"
-+CXXFLAGS="$CXXFLAGS $(printf '%s\n' "$CFLAGS" | sed 's/-Werror-implicit-function-declaration//g')"
- DFB_LDFLAGS="$LDFLAGS $ZLIB_LIBS"
-
- CFLAGS="$CFLAGS $CFLAGS_STD"