From 4ae62dba6e49c34e7b41bf019861a4e26697855f Mon Sep 17 00:00:00 2001 From: attila Date: Tue, 9 Jan 2024 12:43:29 -0600 Subject: [PATCH] Respect INSTALL_QUIET for filters --- lib/ExtUtils/Install.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ExtUtils/Install.pm b/lib/ExtUtils/Install.pm index 83db80d..f0b519e 100644 --- a/lib/ExtUtils/Install.pm +++ b/lib/ExtUtils/Install.pm @@ -1191,7 +1191,7 @@ sub pm_to_blib { } if ($need_filtering) { run_filter($pm_filter, $from, $to); - print "$pm_filter <$from >$to\n"; + print "$pm_filter <$from >$to\n" unless $INSTALL_QUIET; } else { _copy( $from, $to ); print "cp $from $to\n" unless $INSTALL_QUIET;