081c8e2
From a04fd069805e872c2784733b5dbb94c872ef73d9 Mon Sep 17 00:00:00 2001
081c8e2
From: Tony Cook <tony@develop-help.com>
081c8e2
Date: Mon, 20 Jan 2020 14:47:38 +1100
081c8e2
Subject: [PATCH] only install ExtUtils::XSSymSet man page on VMS
081c8e2
MIME-Version: 1.0
081c8e2
Content-Type: text/plain; charset=UTF-8
081c8e2
Content-Transfer-Encoding: 8bit
081c8e2
081c8e2
This module is only installed on VMS, so there's not much point in
081c8e2
installing the man page.
081c8e2
081c8e2
An alternative would be to install the module on VMS, but it tries
081c8e2
to use configuration only set on VMS.
081c8e2
081c8e2
fixes #17424
081c8e2
081c8e2
Signed-off-by: Petr Písař <ppisar@redhat.com>
081c8e2
---
081c8e2
 Porting/pod_lib.pl | 2 ++
081c8e2
 1 file changed, 2 insertions(+)
081c8e2
081c8e2
diff --git a/Porting/pod_lib.pl b/Porting/pod_lib.pl
081c8e2
index f2d854408e..1098074f32 100644
081c8e2
--- a/Porting/pod_lib.pl
081c8e2
+++ b/Porting/pod_lib.pl
081c8e2
@@ -330,6 +330,8 @@ sub pods_to_install {
081c8e2
     # manpages not to be installed
081c8e2
     my %do_not_install = map { ($_ => 1) }
081c8e2
         qw(Pod::Functions XS::APItest XS::Typemap);
081c8e2
+    $do_not_install{"ExtUtils::XSSymSet"} = 1
081c8e2
+        unless $^O eq "VMS";
081c8e2
 
081c8e2
     my (%done, %found);
081c8e2
 
081c8e2
-- 
081c8e2
2.21.1
081c8e2