From bde206b44762f62fac120d07fe747fa4721631fb Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Mon, 13 Jun 2011 11:09:13 -0700 Subject: gettext-0.18.1.1: Remove unused patches gettext-error_print_progname.patch is already applied upstream others are unapplied. (From OE-Core rev: 439e7b3a871c1da02830761e0aa901514e24da0e) Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- .../gettext/gettext-0.18.1.1/use_open_properly.patch | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 meta/recipes-core/gettext/gettext-0.18.1.1/use_open_properly.patch (limited to 'meta/recipes-core/gettext/gettext-0.18.1.1/use_open_properly.patch') 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 a04a32dff9..0000000000 --- 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); -- cgit v1.2.3-54-g00ecf