diff options
Diffstat (limited to 'sysutils/gnome-system-tools/files/patch-src_common_gst-auth.c')
-rw-r--r-- | sysutils/gnome-system-tools/files/patch-src_common_gst-auth.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/sysutils/gnome-system-tools/files/patch-src_common_gst-auth.c b/sysutils/gnome-system-tools/files/patch-src_common_gst-auth.c deleted file mode 100644 index 5bb343172b5f..000000000000 --- a/sysutils/gnome-system-tools/files/patch-src_common_gst-auth.c +++ /dev/null @@ -1,26 +0,0 @@ ---- src/common/gst-auth.c.orig Sun Aug 1 20:04:13 2004 -+++ src/common/gst-auth.c Mon Aug 23 13:00:40 2004 -@@ -300,14 +300,16 @@ - lc_all = getenv ("LC_ALL"); - lang = getenv ("LANG"); - -+ g_string_append (command, "env "); -+ - if (lc_all) -- g_string_append_printf (command, "export LC_ALL=\"%s\" && ", lc_all); -- else if (lc_messages) -- g_string_append_printf (command, "export LC_MESSAGES=\"%s\" && ", lc_messages); -- else if (lang) -- g_string_append_printf (command, "export LANG=\"%s\" && ", lang); -- else if (language) -- g_string_append_printf (command, "export LANGUAGE=\"%s\" && ", language); -+ g_string_append_printf (command, "LC_ALL=\"%s\" ", lc_all); -+ if (lc_messages) -+ g_string_append_printf (command, "LC_MESSAGES=\"%s\" ", lc_messages); -+ if (lang) -+ g_string_append_printf (command, "LANG=\"%s\" ", lang); -+ if (language) -+ g_string_append_printf (command, "LANGUAGE=\"%s\" ", language); - } - - void |