]> git.sur5r.net Git - i3/i3/commitdiff
testcases: Makefile.PL: NAME =~ s/ /-/
authorMaik Fischer <maikf@qu.cx>
Fri, 25 Nov 2011 16:04:52 +0000 (17:04 +0100)
committerMaik Fischer <maikf@qu.cx>
Sun, 4 Dec 2011 13:14:20 +0000 (14:14 +0100)
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'

testcases/Makefile.PL

index eb0f73a45dd3076eb0272ae9e182e54488eade00..2efc14ca5544825dbaa5456010ca139878356d52 100755 (executable)
@@ -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,