From e8d2fbbac81bb13e3e4bebf7dec75b215af4aef4 Mon Sep 17 00:00:00 2001 From: Maik Fischer Date: Fri, 25 Nov 2011 17:04:52 +0100 Subject: [PATCH] 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' --- testcases/Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcases/Makefile.PL b/testcases/Makefile.PL index eb0f73a4..2efc14ca 100755 --- a/testcases/Makefile.PL +++ b/testcases/Makefile.PL @@ -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, -- 2.39.5