Update Text::Balanced to 2.02
[p5sagit/p5-mst-13.2.git] / make_ext.pl
index f74124c..22a97eb 100644 (file)
@@ -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;