You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2006/02/03 04:18:09 UTC

svn commit: r374571 - /httpd/apreq/trunk/build/version_check.pl

Author: joes
Date: Thu Feb  2 19:18:06 2006
New Revision: 374571

URL: http://svn.apache.org/viewcvs?rev=374571&view=rev
Log:
display $tool when complaining about a broken version

Modified:
    httpd/apreq/trunk/build/version_check.pl

Modified: httpd/apreq/trunk/build/version_check.pl
URL: http://svn.apache.org/viewcvs/httpd/apreq/trunk/build/version_check.pl?rev=374571&r1=374570&r2=374571&view=diff
==============================================================================
--- httpd/apreq/trunk/build/version_check.pl (original)
+++ httpd/apreq/trunk/build/version_check.pl Thu Feb  2 19:18:06 2006
@@ -229,7 +229,7 @@
         $fail = 1, last if $version[$_] > $saw[$_];
     }
 
-    die "version $saw is broken" if exists $prereq{$tool}->{broken_version} 
+    die "version $saw of $tool is broken" if exists $prereq{$tool}->{broken_version} 
         && $saw eq $prereq{$tool}->{broken_version};
 }