summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/perl-5.12.3/debian/libnet_config_path.diff
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/perl/perl-5.12.3/debian/libnet_config_path.diff')
-rw-r--r--meta/recipes-devtools/perl/perl-5.12.3/debian/libnet_config_path.diff37
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/perl-5.12.3/debian/libnet_config_path.diff b/meta/recipes-devtools/perl/perl-5.12.3/debian/libnet_config_path.diff
new file mode 100644
index 0000000000..a38e78ac34
--- /dev/null
+++ b/meta/recipes-devtools/perl/perl-5.12.3/debian/libnet_config_path.diff
@@ -0,0 +1,37 @@
1Upstream-Status:Inappropriate [debian patch]
2
3Subject: Set location of libnet.cfg to /etc/perl/Net as /usr may not be writable.
4
5
6---
7 cpan/libnet/Net/Config.pm | 7 +++----
8 1 files changed, 3 insertions(+), 4 deletions(-)
9
10diff --git a/cpan/libnet/Net/Config.pm b/cpan/libnet/Net/Config.pm
11index db51c1f..8404593 100644
12--- a/cpan/libnet/Net/Config.pm
13+++ b/cpan/libnet/Net/Config.pm
14@@ -57,9 +57,8 @@ my %nc = (
15 }
16 TRY_INTERNET_CONFIG
17
18-my $file = __FILE__;
19+my $file = '/etc/perl/Net/libnet.cfg';
20 my $ref;
21-$file =~ s/Config.pm/libnet.cfg/;
22 if (-f $file) {
23 $ref = eval { local $SIG{__DIE__}; do $file };
24 if (ref($ref) eq 'HASH') {
25@@ -132,8 +131,8 @@ Net::Config - Local configuration data for libnet
26 C<Net::Config> holds configuration data for the modules in the libnet
27 distribution. During installation you will be asked for these values.
28
29-The configuration data is held globally in a file in the perl installation
30-tree, but a user may override any of these values by providing their own. This
31+The configuration data is held globally in C</etc/perl/Net/libnet.cfg>,
32+but a user may override any of these values by providing their own. This
33 can be done by having a C<.libnetrc> file in their home directory. This file
34 should return a reference to a HASH containing the keys described below.
35 For example
36--
37tg: (a508b62..) debian/libnet_config_path (depends on: upstream)