diff options
Diffstat (limited to 'meta/recipes-devtools/perl/perl-5.12.2/debian/squelch-locale-warnings.diff')
-rw-r--r-- | meta/recipes-devtools/perl/perl-5.12.2/debian/squelch-locale-warnings.diff | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/perl-5.12.2/debian/squelch-locale-warnings.diff b/meta/recipes-devtools/perl/perl-5.12.2/debian/squelch-locale-warnings.diff new file mode 100644 index 0000000000..091dec45cb --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.12.2/debian/squelch-locale-warnings.diff | |||
@@ -0,0 +1,53 @@ | |||
1 | From: Niko Tyni <ntyni@debian.org> | ||
2 | Subject: Squelch locale warnings in Debian package maintainer scripts | ||
3 | Bug-Debian: http://bugs.debian.org/508764 | ||
4 | |||
5 | The system locales are rather frequently out of sync with the C library | ||
6 | during package upgrades, causing a huge amount of useless Perl locale | ||
7 | warnings. Squelch them when running package maintainer scripts, detected | ||
8 | by the DPKG_RUNNING_VERSION environment variable. | ||
9 | |||
10 | Any real locale problem will show up after the system upgrade too, and | ||
11 | the warning will be triggered normally again at that point. | ||
12 | |||
13 | --- | ||
14 | locale.c | 4 ++++ | ||
15 | pod/perllocale.pod | 8 ++++++++ | ||
16 | 2 files changed, 12 insertions(+), 0 deletions(-) | ||
17 | |||
18 | diff --git a/locale.c b/locale.c | ||
19 | index 16ccce8..2592b3c 100644 | ||
20 | --- a/locale.c | ||
21 | +++ b/locale.c | ||
22 | @@ -359,6 +359,10 @@ Perl_init_i18nl10n(pTHX_ int printwarn) | ||
23 | char *p; | ||
24 | const bool locwarn = (printwarn > 1 || | ||
25 | (printwarn && | ||
26 | + | ||
27 | + /* Debian specific change - see http://bugs.debian.org/508764 */ | ||
28 | + (!PerlEnv_getenv("DPKG_RUNNING_VERSION")) && | ||
29 | + | ||
30 | (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)))); | ||
31 | |||
32 | if (locwarn) { | ||
33 | diff --git a/pod/perllocale.pod b/pod/perllocale.pod | ||
34 | index 0dbabe7..60b7bab 100644 | ||
35 | --- a/pod/perllocale.pod | ||
36 | +++ b/pod/perllocale.pod | ||
37 | @@ -844,6 +844,14 @@ B<NOTE>: PERL_BADLANG only gives you a way to hide the warning message. | ||
38 | The message tells about some problem in your system's locale support, | ||
39 | and you should investigate what the problem is. | ||
40 | |||
41 | +=item DPKG_RUNNING_VERSION | ||
42 | + | ||
43 | +On Debian systems, if the DPKG_RUNNING_VERSION environment variable is | ||
44 | +set (to any value), the locale failure warnings will be suppressed just | ||
45 | +like with a zero PERL_BADLANG setting. This is done to avoid floods | ||
46 | +of spurious warnings during system upgrades. | ||
47 | +See L<http://bugs.debian.org/508764>. | ||
48 | + | ||
49 | =back | ||
50 | |||
51 | The following environment variables are not specific to Perl: They are | ||
52 | -- | ||
53 | tg: (c823880..) debian/squelch-locale-warnings (depends on: upstream) | ||