diff options
author | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2017-01-23 18:06:59 +0000 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz (arab, vxp) <l.illanes@gmx.de> | 2017-01-23 18:06:59 +0000 |
commit | b5933a508096cb77de8e1fedab23c97aec9d4626 (patch) | |
tree | bb5a025d075f3250bd9decf2ec9f7b134630b22b /patches | |
parent | dd33bfbad11bd43850498580f0cf68721daa3415 (diff) | |
download | midipix_build-b5933a508096cb77de8e1fedab23c97aec9d4626.tar.bz2 midipix_build-b5933a508096cb77de8e1fedab23c97aec9d4626.tar.xz |
patches/perl-5.22.1.local.patch: fix manpage filename generation (via Redfoxmoon.)
Diffstat (limited to 'patches')
-rw-r--r-- | patches/perl-5.22.1.local.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/patches/perl-5.22.1.local.patch b/patches/perl-5.22.1.local.patch new file mode 100644 index 00000000..765411eb --- /dev/null +++ b/patches/perl-5.22.1.local.patch @@ -0,0 +1,16 @@ +diff -ru perl-5.22.1.orig/installman perl-5.22.1/installman +--- perl-5.22.1.orig/installman 2015-10-17 14:32:14.000000000 +0200 ++++ perl-5.22.1/installman 2017-01-17 16:54:06.004016000 +0100 +@@ -146,9 +146,10 @@ + next; + } + +- if ($^O eq 'os2' || $^O eq 'amigaos' || $^O eq 'uwin' || $^O eq 'cygwin') { ++ #Fix me later? ++ #if ($^O eq 'os2' || $^O eq 'amigaos' || $^O eq 'uwin' || $^O eq 'cygwin' || $^O eq 'midipix') { + $manpage =~ s#::#.#g; +- } ++ #} + my $tmp = "${mandir}/${manpage}.tmp"; + $manpage = "${mandir}/${manpage}.${manext}"; + |