projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
722a5c5
)
Check for 'usage' and 'Usage'.
author
Richard Levitte
<levitte@openssl.org>
Mon, 20 Jun 2005 20:45:44 +0000
(20:45 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Mon, 20 Jun 2005 20:45:44 +0000
(20:45 +0000)
Submitted by Tim Rice <tim@multitalents.net>. His comment is:
I noticed "make report" didn't show the cc version on most of
my System V platforms. This patch corrects this.
util/selftest.pl
patch
|
blob
|
history
diff --git
a/util/selftest.pl
b/util/selftest.pl
index 736eacb11ec972a900cfa85707baa0161a965b0e..4778c5ab01df7d1af8c9ed5b380fc800b3c23a27 100644
(file)
--- a/
util/selftest.pl
+++ b/
util/selftest.pl
@@
-49,7
+49,7
@@
if (open(IN,"<Makefile")) {
}
$cversion=`$cc -v 2>&1`;
-$cversion=`$cc -V 2>&1` if $cversion =~ "
u
sage";
+$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//;