testcases: Makefile.PL: NAME =~ s/ /-/
since NAME is used to generate targets, a space will lead to invalid syntax eg: Makefile:547: warning: overriding commands for target `i3' Makefile:536: warning: ignoring old commands for target `i3'
This commit is contained in:
parent
423b891995
commit
e8d2fbbac8
|
@ -4,7 +4,7 @@ use strict; use warnings;
|
|||
use ExtUtils::MakeMaker;
|
||||
|
||||
WriteMakefile(
|
||||
NAME => 'i3 testsuite',
|
||||
NAME => 'i3-testsuite',
|
||||
MIN_PERL_VERSION => '5.010000', # 5.10.0
|
||||
PREREQ_PM => {
|
||||
'AnyEvent' => 0,
|
||||
|
|
Loading…
Reference in New Issue