summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/perl-5.14.3/debian/writable_site_dirs.diff
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/perl/perl-5.14.3/debian/writable_site_dirs.diff')
-rw-r--r--meta/recipes-devtools/perl/perl-5.14.3/debian/writable_site_dirs.diff37
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/writable_site_dirs.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/writable_site_dirs.diff
new file mode 100644
index 0000000000..a4a9adf52e
--- /dev/null
+++ b/meta/recipes-devtools/perl/perl-5.14.3/debian/writable_site_dirs.diff
@@ -0,0 +1,37 @@
1Upstream-Status:Inappropriate [debian patches]
2From 492e0d6b4e3e0d786fb88b9058d581f6466c4a3e Mon Sep 17 00:00:00 2001
3From: Brendan O'Dea <bod@debian.org>
4Date: Tue, 8 Mar 2005 19:30:38 +1100
5Subject: Set umask approproately for site install directories
6
7Policy requires group writable site directories
8
9Patch-Name: debian/writable_site_dirs.diff
10---
11 cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 6 +++---
12 1 files changed, 3 insertions(+), 3 deletions(-)
13
14diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm
15index 865d36d..4ee6b3f 100644
16--- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm
17+++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm
18@@ -2067,7 +2067,7 @@ pure_perl_install :: all
19
20
21 pure_site_install :: all
22- $(NOECHO) umask 022; $(MOD_INSTALL) \
23+ $(NOECHO) umask 02; $(MOD_INSTALL) \
24 read }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \
25 write }.$self->catfile('$(DESTINSTALLSITEARCH)','auto','$(FULLEXT)','.packlist').q{ \
26 $(INST_LIB) $(DESTINSTALLSITELIB) \
27@@ -2103,8 +2103,8 @@ doc_perl_install :: all
28
29 doc_site_install :: all
30 $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod
31- -$(NOECHO) umask 022; $(MKPATH) $(DESTINSTALLARCHLIB)
32- -$(NOECHO) umask 022; $(DOC_INSTALL) \
33+ -$(NOECHO) umask 02; $(MKPATH) $(DESTINSTALLARCHLIB)
34+ -$(NOECHO) umask 02; $(DOC_INSTALL) \
35 "Module" "$(NAME)" \
36 "installed into" "$(INSTALLSITELIB)" \
37 LINKTYPE "$(LINKTYPE)" \