File: dont_delete_SMIME_pod.patch

package info (click to toggle)
libcrypt-smime-perl 0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 184 kB
  • sloc: perl: 264; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 898 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Description: don't delete SMIME.pod in 'make clean'
 'make clean' will delete ./SMIME.pod, which is part of the distribution
 and essential for the build to succeed.
 .
 This is a quick&dirty fix for the immediate issue, and may not be
 appropriate for upstream (autogenerate SMIME.pod?):
 .
 Just don't touch it (don't delete it).
Author: Florian Schlichting <fschlich@zedat.fu-berlin.de>
Bug: https://rt.cpan.org/Public/Bug/Display.html?id=56025

--- libcrypt-smime-perl-0.10.orig/Makefile.PL
+++ libcrypt-smime-perl-0.10/Makefile.PL
@@ -20,7 +20,7 @@ WriteMakefile(
     INC                 => "$OPENSSL->{CFLAGS}",
     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
     clean               => {
-        FILES => 'Crypt-SMIME-* SMIME.pod',
+        FILES => 'Crypt-SMIME-*',
     },
     PM                  => {
         'lib/SMIME.pm'     => '$(INST_LIBDIR)/SMIME.pm',