summaryrefslogtreecommitdiff
path: root/meta/recipes-core/gettext/gettext-0.17/use_open_properly.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/gettext/gettext-0.17/use_open_properly.patch')
-rw-r--r--meta/recipes-core/gettext/gettext-0.17/use_open_properly.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/meta/recipes-core/gettext/gettext-0.17/use_open_properly.patch b/meta/recipes-core/gettext/gettext-0.17/use_open_properly.patch
deleted file mode 100644
index 111714b54..000000000
--- a/meta/recipes-core/gettext/gettext-0.17/use_open_properly.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-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);