aboutsummaryrefslogtreecommitdiffstats
path: root/mail/cyrus-imapd24/files/patch-perl__imap__Makefile.PL
blob: eb67dcfcf5b9c79e616876a5ce888438dd13b0cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Index: perl/imap/Makefile.PL
diff -u perl/imap/Makefile.PL.orig perl/imap/Makefile.PL
--- perl/imap/Makefile.PL.orig  Thu Oct 23 03:50:18 2003
+++ perl/imap/Makefile.PL   Sun Dec 12 04:20:10 2004
@@ -70,3 +70,10 @@
     'INC'  => "-I../../lib $SASL_INC $OPENSSL_INC", 
     'EXE_FILES' => [cyradm],
 );
+
+package MY;
+sub install {
+    my $inherited = shift->SUPER::install(@_);
+    $inherited =~ s/(install :: (all )?pure_install) doc_install/$1/;
+    $inherited;
+}