From: Richard Levitte Date: Thu, 1 Feb 2024 09:57:51 +0000 (+0100) Subject: Fix a few incorrect paths in some build.info files X-Git-Tag: openssl-3.1.6~110 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a49488cb3a18a80a3ff06390aa418f6fb1b4230;p=thirdparty%2Fopenssl.git Fix a few incorrect paths in some build.info files The following files referred to ../liblegacy.a when they should have referred to ../../liblegacy.a. This cause the creation of a mysterious directory 'crypto/providers', and because of an increased strictness with regards to where directories are created, configuration failure on some platforms. Fixes #23436 Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz Reviewed-by: Tom Cosgrove (Merged from https://github.com/openssl/openssl/pull/23452) (cherry picked from commit 667b45454a47959ce2934b74c899662e686993de) --- diff --git a/crypto/aes/build.info b/crypto/aes/build.info index aff318b34e0..9bd3c390e8f 100644 --- a/crypto/aes/build.info +++ b/crypto/aes/build.info @@ -83,7 +83,7 @@ DEFINE[../../providers/libdefault.a]=$AESDEF # already gets everything that the static libcrypto.a has, and doesn't need it # added again. IF[{- !$disabled{module} && !$disabled{shared} -}] - DEFINE[../providers/liblegacy.a]=$AESDEF + DEFINE[../../providers/liblegacy.a]=$AESDEF ENDIF GENERATE[aes-ia64.s]=asm/aes-ia64.S diff --git a/crypto/ec/build.info b/crypto/ec/build.info index a511e887a9b..6dd98e9f4f1 100644 --- a/crypto/ec/build.info +++ b/crypto/ec/build.info @@ -77,7 +77,7 @@ DEFINE[../../providers/libdefault.a]=$ECDEF # Otherwise, it already gets everything that the static libcrypto.a # has, and doesn't need it added again. IF[{- !$disabled{module} && !$disabled{shared} -}] - DEFINE[../providers/liblegacy.a]=$ECDEF + DEFINE[../../providers/liblegacy.a]=$ECDEF ENDIF GENERATE[ecp_nistz256-x86.S]=asm/ecp_nistz256-x86.pl diff --git a/crypto/sha/build.info b/crypto/sha/build.info index 556a658d8b5..deb7b1530d4 100644 --- a/crypto/sha/build.info +++ b/crypto/sha/build.info @@ -88,7 +88,7 @@ DEFINE[../../providers/libdefault.a]=$SHA1DEF $KECCAK1600DEF # linked with libcrypto. Otherwise, it already gets everything that # the static libcrypto.a has, and doesn't need it added again. IF[{- !$disabled{module} && !$disabled{shared} -}] - DEFINE[../providers/liblegacy.a]=$SHA1DEF $KECCAK1600DEF + DEFINE[../../providers/liblegacy.a]=$SHA1DEF $KECCAK1600DEF ENDIF GENERATE[sha1-586.S]=asm/sha1-586.pl diff --git a/crypto/sm4/build.info b/crypto/sm4/build.info index 75a215ab806..c0f08ed6c25 100644 --- a/crypto/sm4/build.info +++ b/crypto/sm4/build.info @@ -25,7 +25,7 @@ DEFINE[../../providers/libdefault.a]=$SM4DEF # already gets everything that the static libcrypto.a has, and doesn't need it # added again. IF[{- !$disabled{module} && !$disabled{shared} -}] - DEFINE[../providers/liblegacy.a]=$SM4DEF + DEFINE[../../providers/liblegacy.a]=$SM4DEF ENDIF GENERATE[sm4-armv8.S]=asm/sm4-armv8.pl