From: Wolfgang Stöggl Date: Wed, 16 Jan 2019 08:17:43 +0000 (+0100) Subject: Remove LINKTYPE from perl-piped/Makefile.PL X-Git-Tag: v1.7.1~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c8aa7f020ad55e8a251e2baf8e692259eb61ce78;p=thirdparty%2Frrdtool-1.x.git 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 --- 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'}, );