summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew McClintock <msm@freescale.com>2012-09-17 16:34:58 -0500
committerMatthew McClintock <msm@freescale.com>2012-09-18 13:49:12 -0500
commitcbcd69c8fd03424daf30246c879d51e81c6017a6 (patch)
tree3e90d5aba22c7a8e5090022a1202f0c41ce5004e
parent0a62e229254080e96ea537000f2398a00e2241c9 (diff)
downloadmeta-fsl-ppc-cbcd69c8fd03424daf30246c879d51e81c6017a6.tar.gz
gettext: remove bbappends since the patch it adds does not apply
Signed-off-by: Matthew McClintock <msm@freescale.com>
-rw-r--r--recipes-append/gettext/files/gettext.fix_testcase.patch13
-rw-r--r--recipes-append/gettext/gettext_0.18.1.1.bbappend5
2 files changed, 0 insertions, 18 deletions
diff --git a/recipes-append/gettext/files/gettext.fix_testcase.patch b/recipes-append/gettext/files/gettext.fix_testcase.patch
deleted file mode 100644
index 135f267..0000000
--- a/recipes-append/gettext/files/gettext.fix_testcase.patch
+++ /dev/null
@@ -1,13 +0,0 @@
1--- gettext-0.16.1/gettext-runtime/tests/test-lock.c-orig 2011-07-22 12:51:14.734334073 -0500
2+++ gettext-0.16.1/gettext-runtime/tests/test-lock.c 2011-07-22 12:43:59.962333864 -0500
3@@ -106,7 +106,9 @@
4 }
5 static inline void * gl_thread_self (void)
6 {
7- return (void *) pthread_self ();
8+ pthread_t x;
9+ x = pthread_self ();
10+ return (void *)&x;
11 }
12 #endif
13 #if TEST_PTH_THREADS
diff --git a/recipes-append/gettext/gettext_0.18.1.1.bbappend b/recipes-append/gettext/gettext_0.18.1.1.bbappend
deleted file mode 100644
index 1a6d9f4..0000000
--- a/recipes-append/gettext/gettext_0.18.1.1.bbappend
+++ /dev/null
@@ -1,5 +0,0 @@
1FILESEXTRAPATHS_prepend_fsl := "${THISDIR}/files:"
2
3SRC_URI_fsl += "file://gettext.fix_testcase.patch"
4
5PR_fsl .= "+${DISTRO}.0"