You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by fe...@apache.org on 2005/10/14 19:09:13 UTC

svn commit: r321150 - /spamassassin/trunk/lib/Mail/SpamAssassin/Util/DependencyInfo.pm

Author: felicity
Date: Fri Oct 14 10:09:11 2005
New Revision: 321150

URL: http://svn.apache.org/viewcvs?rev=321150&view=rev
Log:
if there's an error from DependencyInfo, such as 'perl Makefile.PL < /dev/null > /dev/null' and HTML::Parser being out of date, we should print it to STDERR, not STDOUT, so do a warn instead of print.

Modified:
    spamassassin/trunk/lib/Mail/SpamAssassin/Util/DependencyInfo.pm

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Util/DependencyInfo.pm
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/lib/Mail/SpamAssassin/Util/DependencyInfo.pm?rev=321150&r1=321149&r2=321150&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Util/DependencyInfo.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Util/DependencyInfo.pm Fri Oct 14 10:09:11 2005
@@ -253,7 +253,7 @@
   print "\n", ("*" x 75), "\n";
   if ($required) {
     $EXIT_STATUS++;
-    print "\aERROR: the required $pretty_name ${pretty_version}module $errtype";
+    warn "\aERROR: the required $pretty_name ${pretty_version}module $errtype";
     if ($not_installed) {
       $$summref .= "REQUIRED module missing: $pretty_name\n";
     } else {