From c8aa7f020ad55e8a251e2baf8e692259eb61ce78 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wolfgang=20St=C3=B6ggl?= Date: Wed, 16 Jan 2019 09:17:43 +0100 Subject: [PATCH] Remove LINKTYPE from perl-piped/Makefile.PL - Remove line: 'linkext' => {LINKTYPE => ''}, Since version 5.00 of MakeMaker such a line can be deleted safely. MakeMaker recognizes when there's nothing to be linked. See: https://perldoc.perl.org/ExtUtils/MakeMaker.html - Fixes Warning: LINKTYPE set to '', no longer necessary --- bindings/perl-piped/Makefile.PL | 1 - 1 file changed, 1 deletion(-) diff --git a/bindings/perl-piped/Makefile.PL b/bindings/perl-piped/Makefile.PL index 5c1a98fc..5184715b 100644 --- a/bindings/perl-piped/Makefile.PL +++ b/bindings/perl-piped/Makefile.PL @@ -5,6 +5,5 @@ use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'RRDp', 'VERSION' => '0.99.0', # finds $VERSION - 'linkext' => {LINKTYPE => ''}, 'dist' => {COMPRESS=>'gzip', SUFFIX=>'gz'}, ); -- 2.47.2