File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 16
16
" s|separate" => \$separate ,
17
17
" i|install" => \$install ,
18
18
" h|help" => \&usage)
19
- or die " Unknown options\n " ;
19
+ or usage( " Unknown options" ) ;
20
20
21
21
$separate
22
22
and warn " -s / -separate is now the default\n " ;
@@ -301,8 +301,8 @@ sub usage {
301
301
-c | -continue
302
302
Continue processing after failures
303
303
Devel::PPPort must successfully build to continue.
304
- -s | -separate
305
- Install to a work path, not to perl's site_perl.
304
+ -i | -install
305
+ Install to perl's site_perl.
306
306
-h | -help
307
307
Display this message.
308
308
@@ -312,12 +312,13 @@ sub usage {
312
312
313
313
Test all of the distributions, stop on the first failure:
314
314
315
- $^X $0 -s
315
+ $^X $0
316
316
317
317
Test the various threads distributions, continue on failure:
318
318
319
- $^X $0 -s - c threads threads-shared Thread-Queue Thread-Semaphore
319
+ $^X $0 -c threads threads-shared Thread-Queue Thread-Semaphore
320
320
EOS
321
+ exit ;
321
322
}
322
323
323
324
__DATA__
You can’t perform that action at this time.
0 commit comments