Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/experimental.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2021-08-17 18:42:21 +0300
committerPauli <pauli@openssl.org>2021-08-20 03:32:35 +0300
commitecb09bafad43bc8a722c498f859ed6ad3c73b99b (patch)
tree8471386868b29ac7cc385278f7bbcc27ccda2f64 /util
parent214888448df407e2154ca871d6ffec41ab18698e (diff)
Replace CONFIG_NOWAIT env var with -w option
And document the -w option Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16325)
Diffstat (limited to 'util')
-rwxr-xr-xutil/perl/OpenSSL/config.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/perl/OpenSSL/config.pm b/util/perl/OpenSSL/config.pm
index b6de03c43a..7250791b5b 100755
--- a/util/perl/OpenSSL/config.pm
+++ b/util/perl/OpenSSL/config.pm
@@ -22,8 +22,8 @@ use Carp;
# These control our behavior.
my $DRYRUN;
my $VERBOSE;
-my $WAIT = defined $ENV{'CONFIG_NOWAIT'} ? 0 : 1;
my $WHERE = dirname($0);
+my $WAIT = 1;
# Machine type, etc., used to determine the platform
my $MACHINE;