From: Michael Stapelberg Date: Sun, 10 Sep 2017 09:25:43 +0000 (+0200) Subject: testcases/Makefile.PL: tell MakeMaker this is a pure-Perl distribution (#2922) X-Git-Tag: 4.15~102 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6caf4e1cb52b72745a7c497caf0dbd448f9e67f9;p=i3%2Fi3 testcases/Makefile.PL: tell MakeMaker this is a pure-Perl distribution (#2922) fixes #2914 --- diff --git a/testcases/Makefile.PL b/testcases/Makefile.PL index 0b1f3055..bf4e5dd7 100755 --- a/testcases/Makefile.PL +++ b/testcases/Makefile.PL @@ -18,7 +18,11 @@ WriteMakefile( PM => {}, # do not install any files from this directory clean => { FILES => 'testsuite-* latest i3-cfg-for-*', - } + }, + # This is a pure-Perl distribution: + linkext => { + LINKTYPE => '', + }, ); package MY;