From: Richard Levitte Date: Wed, 1 Jul 2020 05:39:06 +0000 (+0200) Subject: util/perl/OpenSSL/config.pm: Fix /armv[7-9].*-.*-linux2/ X-Git-Tag: openssl-3.0.0-alpha5~100 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1cafbb799a373f0d6ba55843fd51692e14c0fe09;p=thirdparty%2Fopenssl.git util/perl/OpenSSL/config.pm: Fix /armv[7-9].*-.*-linux2/ This entry added the macro B_ENDIAN when it shouldn't have. Fixes #12332 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/12335) --- diff --git a/util/perl/OpenSSL/config.pm b/util/perl/OpenSSL/config.pm index 7a37399bcad..e72eadc8a99 100755 --- a/util/perl/OpenSSL/config.pm +++ b/util/perl/OpenSSL/config.pm @@ -609,7 +609,6 @@ EOF ], [ 'armv[1-3].*-.*-linux2', { target => "linux-generic32" } ], [ 'armv[7-9].*-.*-linux2', { target => "linux-armv4", - defines => [ 'B_ENDIAN' ], cflags => [ '-march=armv7-a' ], cxxflags => [ '-march=armv7-a' ] } ], [ 'arm.*-.*-linux2', { target => "linux-armv4" } ],