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