File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -853,5 +853,5 @@ jobs:
853853 run: /usr/bin/perl -V
854854 - name: Build and test dist modules
855855 run:
856- /usr/bin/perl Porting/test-dist-modules.pl -continue -separate
856+ /usr/bin/perl Porting/test-dist-modules.pl -continue
857857
Original file line number Diff line number Diff line change 1111
1212my $continue ;
1313my $separate ;
14+ my $install ;
1415GetOptions(" c|continue" => \$continue ,
1516 " s|separate" => \$separate ,
17+ " i|install" => \$install ,
1618 " h|help" => \&usage)
1719 or die " Unknown options\n " ;
1820
21+ $separate
22+ and warn " -s / -separate is now the default\n " ;
23+
1924$| ++;
2025
2126-f " Configure"
2833
2934my @config ;
3035my $install_path ;
31- if ($separate ) {
36+ unless ($install ) {
3237 # require EU::MM 6.31 or later
3338 my $install_base = tempdir( CLEANUP => 1 );
3439 push @config , " INSTALL_BASE=$install_base " ;
You can’t perform that action at this time.
0 commit comments