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:
853
853
run: /usr/bin/perl -V
854
854
- name: Build and test dist modules
855
855
run:
856
- /usr/bin/perl Porting/test-dist-modules.pl -continue -separate
856
+ /usr/bin/perl Porting/test-dist-modules.pl -continue
857
857
Original file line number Diff line number Diff line change 11
11
12
12
my $continue ;
13
13
my $separate ;
14
+ my $install ;
14
15
GetOptions(" c|continue" => \$continue ,
15
16
" s|separate" => \$separate ,
17
+ " i|install" => \$install ,
16
18
" h|help" => \&usage)
17
19
or die " Unknown options\n " ;
18
20
21
+ $separate
22
+ and warn " -s / -separate is now the default\n " ;
23
+
19
24
$| ++;
20
25
21
26
-f " Configure"
28
33
29
34
my @config ;
30
35
my $install_path ;
31
- if ($separate ) {
36
+ unless ($install ) {
32
37
# require EU::MM 6.31 or later
33
38
my $install_base = tempdir( CLEANUP => 1 );
34
39
push @config , " INSTALL_BASE=$install_base " ;
You can’t perform that action at this time.
0 commit comments