testcases/Makefile.PL: tell MakeMaker this is a pure-Perl distribution (#2922)

fixes #2914
This commit is contained in:
Michael Stapelberg 2017-09-10 11:25:43 +02:00 committed by Michael Stapelberg
parent 7cb9465db9
commit 155e307a3f
1 changed files with 5 additions and 1 deletions

View File

@ -18,7 +18,11 @@ WriteMakefile(
PM => {}, # do not install any files from this directory PM => {}, # do not install any files from this directory
clean => { clean => {
FILES => 'testsuite-* latest i3-cfg-for-*', FILES => 'testsuite-* latest i3-cfg-for-*',
} },
# This is a pure-Perl distribution:
linkext => {
LINKTYPE => '',
},
); );
package MY; package MY;