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'
next
Maik Fischer 2011-11-25 17:04:52 +01:00
parent 423b891995
commit e8d2fbbac8
1 changed files with 1 additions and 1 deletions

View File

@ -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,