From 409306f0a9892a54b06c31b8cf72451630c70173 Mon Sep 17 00:00:00 2001 From: cristy Date: Fri, 8 Oct 2010 17:39:19 +0000 Subject: [PATCH] --- PerlMagick/Makefile.PL | 1 + PerlMagick/Makefile.PL.in | 1 + 2 files changed, 2 insertions(+) diff --git a/PerlMagick/Makefile.PL b/PerlMagick/Makefile.PL index af6c00192..a03c87c8d 100644 --- a/PerlMagick/Makefile.PL +++ b/PerlMagick/Makefile.PL @@ -123,6 +123,7 @@ EOF sub AutodetectDelegates { #try to get configuration info via identify or convert utilities + my $devnull = devnull(); my $conf = `identify -list format 2>$devnull` || `convert -list format 2>$devnull`; foreach my $line (split '\n', $conf) { next unless $line =~ /^DELEGATES\s+/; diff --git a/PerlMagick/Makefile.PL.in b/PerlMagick/Makefile.PL.in index f17956473..aed305240 100644 --- a/PerlMagick/Makefile.PL.in +++ b/PerlMagick/Makefile.PL.in @@ -123,6 +123,7 @@ EOF sub AutodetectDelegates { #try to get configuration info via identify or convert utilities + my $devnull = devnull(); my $conf = `identify -list format 2>$devnull` || `convert -list format 2>$devnull`; foreach my $line (split '\n', $conf) { next unless $line =~ /^DELEGATES\s+/; -- 2.50.1