NetBSD-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: toolchain/57519: awk syntax error in crypto/external/bsd/openssl/lib/libcrypto/gen when building on Solaris 11.4 host system
The following reply was made to PR toolchain/57519; it has been noted by GNATS.
From: Palle Lyckegaard <palle%lyckegaard.dk@localhost>
To: Valery Ushakov <uwe%stderr.spb.ru@localhost>
Cc: gnats-bugs%netbsd.org@localhost
Subject: Re: toolchain/57519: awk syntax error in crypto/external/bsd/openssl/lib/libcrypto/gen
when building on Solaris 11.4 host system
Date: Fri, 18 Aug 2023 18:15:39 +0000 (UTC)
On Wed, 16 Aug 2023, Valery Ushakov wrote:
> I'd rather we only add the first change (escaping the opening curly),
> that _is_ required.
>
> The second change (closing curly) is not necessary and, and may be in
> fact wrong (cf. my previous reply with the quote from the gawk
> manual).
>
> -uwe
>
Sure - I've update my patch so only the opening curly is handled:
diff --git a/crypto/external/bsd/openssl/lib/libcrypto/gen
b/crypto/external/bsd/openssl/lib/libcrypto/gen
index acc5bc97a6c7..26f68e459e18 100755
--- a/crypto/external/bsd/openssl/lib/libcrypto/gen
+++ b/crypto/external/bsd/openssl/lib/libcrypto/gen
@@ -11,7 +11,7 @@ awk '
/use OpenSSL/ {
next;
}
-/^{-/ {
+/^\{-/ {
next;
}
/^-}/ {
I will commit this patch withing the next few days if nobody else objects.
Thanks for the feedback Valery :-)
Regards
Palle
Home |
Main Index |
Thread Index |
Old Index