X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=make_ext.pl;h=22a97eb7af7cdc73d62ee2cf736da95ef4c5a7a2;hb=85831461cd8850ede28b33bf03b6fe7a7904e0dc;hp=f74124ca42e747da198353c12c56a2900b091876;hpb=e74f76b27bd4a9c64ec8f4f10c74bbd59db04e7d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/make_ext.pl b/make_ext.pl index f74124c..22a97eb 100644 --- a/make_ext.pl +++ b/make_ext.pl @@ -82,6 +82,9 @@ foreach (@extspec) { } elsif (s{^ext/}{}) { # Remove ext/ prefix and /pm_to_blib suffix s{/pm_to_blib$}{}; + # Targets are given as files on disk, but the extension spec is still + # written using /s for each :: + tr!-!/!; } elsif (s{::}{\/}g) { # Convert :: to / } else { @@ -288,7 +291,8 @@ EOM my $libd = VMS::Filespec::vmspath($lib_dir); push @args, "INST_LIB=$libd", "INST_ARCHLIB=$libd"; } else { - push @args, 'INSTALLDIRS=perl', 'INSTALLMAN3DIR=none'; + push @args, 'INSTALLDIRS=perl', 'INSTALLMAN1DIR=none', + 'INSTALLMAN3DIR=none'; } push @args, @$pass_through; _quote_args(\@args) if $is_VMS;