From: Richard Levitte Date: Mon, 20 Jun 2005 20:49:05 +0000 (+0000) Subject: Check for 'usage' and 'Usage'. X-Git-Tag: OpenSSL_0_9_8-beta6~5 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0932892278d053382c3ff14d3f1f3638a6456f69;p=oweals%2Fopenssl.git Check for 'usage' and 'Usage'. Submitted by Tim Rice . His comment is: I noticed "make report" didn't show the cc version on most of my System V platforms. This patch corrects this. --- diff --git a/util/selftest.pl b/util/selftest.pl index 736eacb11e..4778c5ab01 100644 --- a/util/selftest.pl +++ b/util/selftest.pl @@ -49,7 +49,7 @@ if (open(IN,"&1`; -$cversion=`$cc -V 2>&1` if $cversion =~ "usage"; +$cversion=`$cc -V 2>&1` if $cversion =~ "[Uu]sage"; $cversion=`$cc -V |head -1` if $cversion =~ "Error"; $cversion=`$cc --version` if $cversion eq ""; $cversion =~ s/Reading specs.*\n//;