summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2021-08-16 17:31:59 -0400
committerRichard Levitte <levitte@openssl.org>2021-09-07 15:23:59 +0200
commita4ffb33ea8b7bcf04b8181dafce7ac512081d0ab (patch)
tree3878969c8cf65f3b061ad059920cdf6f030d4cea /util
parenta8d9bd8114510d3a1708da3922f07e7f707674bc (diff)
Use '[option...]' not '[[ options ]]' in text
Looks more like manpage format. :) Also remove `{{..}}` notation and rewrite around it. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16329)
Diffstat (limited to 'util')
-rwxr-xr-xutil/perl/OpenSSL/config.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/perl/OpenSSL/config.pm b/util/perl/OpenSSL/config.pm
index 7250791b5b..d8be17cdc5 100755
--- a/util/perl/OpenSSL/config.pm
+++ b/util/perl/OpenSSL/config.pm
@@ -473,7 +473,7 @@ EOF
if ( $ISA64 == 1 && $KERNEL_BITS eq '' ) {
print <<EOF;
WARNING! To build 64-bit package, do this:
- KERNEL_BITS=64 $WHERE/Configure \[\[ options \]\]
+ KERNEL_BITS=64 $WHERE/Configure [options...]
EOF
maybe_abort();
}
@@ -489,7 +489,7 @@ EOF
print <<EOF;
WARNING! To build 32-bit package, do this:
- KERNEL_BITS=32 $WHERE/Configure \[\[ options \]\]
+ KERNEL_BITS=32 $WHERE/Configure [options...]
EOF
maybe_abort();
return { target => "darwin64-x86_64" };