summaryrefslogtreecommitdiff
path: root/meta/recipes-core/gettext/gettext-0.18.1.1/use_open_properly.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2011-06-13 11:09:13 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-06-22 16:39:24 +0100
commit439e7b3a871c1da02830761e0aa901514e24da0e (patch)
treeac3272843c4d71805fd42ad6d29de247cd4bae5e /meta/recipes-core/gettext/gettext-0.18.1.1/use_open_properly.patch
parentad5481f6348d1bc504729efd4321bf1fcac4083b (diff)
downloadopenembedded-core-439e7b3a871c1da02830761e0aa901514e24da0e.tar.gz
openembedded-core-439e7b3a871c1da02830761e0aa901514e24da0e.tar.bz2
openembedded-core-439e7b3a871c1da02830761e0aa901514e24da0e.tar.xz
openembedded-core-439e7b3a871c1da02830761e0aa901514e24da0e.zip
gettext-0.18.1.1: Remove unused patches
gettext-error_print_progname.patch is already applied upstream others are unapplied. Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-core/gettext/gettext-0.18.1.1/use_open_properly.patch')
-rw-r--r--meta/recipes-core/gettext/gettext-0.18.1.1/use_open_properly.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/meta/recipes-core/gettext/gettext-0.18.1.1/use_open_properly.patch b/meta/recipes-core/gettext/gettext-0.18.1.1/use_open_properly.patch
deleted file mode 100644
index a04a32dff..000000000
--- a/meta/recipes-core/gettext/gettext-0.18.1.1/use_open_properly.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Upstream-Status: Pending
-
-Index: gettext-0.17/gettext-tools/src/write-catalog.c
-===================================================================
---- gettext-0.17.orig/gettext-tools/src/write-catalog.c 2008-10-16 15:18:16.000000000 +0200
-+++ gettext-0.17/gettext-tools/src/write-catalog.c 2008-10-16 18:17:13.000000000 +0200
-@@ -220,7 +220,9 @@
- /* Open the output file. */
- if (!to_stdout)
- {
-- fd = open (filename, O_WRONLY | O_CREAT);
-+ fd = open (filename, O_WRONLY | O_CREAT,
-+ /* 0666 in portable POSIX notation: */
-+ S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
- if (fd < 0)
- {
- const char *errno_description = strerror (errno);