diff options
author | Ulf Möller <ulf@openssl.org> | 2001-03-06 16:36:24 +0100 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 2001-03-06 16:36:24 +0100 |
commit | 7b4c588f58e9f25ec2f676652f74df6e41e1dfc4 (patch) | |
tree | 072c637046f76595506838f586dc2b90b4d8d388 /util | |
parent | Change obj_... generation so that it does not generate rubbish or (diff) | |
download | openssl-7b4c588f58e9f25ec2f676652f74df6e41e1dfc4.tar.xz openssl-7b4c588f58e9f25ec2f676652f74df6e41e1dfc4.zip |
Forgot a '$'.
Diffstat (limited to 'util')
-rw-r--r-- | util/selftest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/selftest.pl b/util/selftest.pl index 1349f6ff37..83fd9f87b9 100644 --- a/util/selftest.pl +++ b/util/selftest.pl @@ -50,7 +50,7 @@ if (open(IN,"<Makefile.ssl")) { $cversion=`$cc -v 2>&1`; $cversion=`$cc -V 2>&1` if $cversion =~ "usage"; -$cversion=`cc -V |head -1` if $cversion =~ "Error"; +$cversion=`$cc -V |head -1` if $cversion =~ "Error"; $cversion=`$cc --version` if $cversion eq ""; $cversion =~ s/Reading specs.*\n//; $cversion =~ s/usage.*\n//; |