]> git.sur5r.net Git - i3/i3/commitdiff
testcases/Makefile.PL: tell MakeMaker this is a pure-Perl distribution (#2922)
authorMichael Stapelberg <stapelberg@users.noreply.github.com>
Sun, 10 Sep 2017 09:25:43 +0000 (11:25 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Wed, 13 Sep 2017 16:41:46 +0000 (18:41 +0200)
fixes #2914

testcases/Makefile.PL

index 0b1f305592a14e806bb5ae4920a1404ed05761f5..bf4e5dd70802c880b29f23e8c544b828df797e2b 100755 (executable)
@@ -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;