summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2021-01-13 23:55:51 +0100
committerRichard Levitte <levitte@openssl.org>2021-01-15 11:19:25 +0100
commit3f6e891d423ed911eb779bfd1401a26ec18cfa41 (patch)
treeba30b86b8df2c047041cfbc882c00884b9091fe7
parente604b7c9156c66c05dd1640707f196f9fd49a184 (diff)
Fix crypto/des/build.info
!$disabled{mdc2} was used to determine if DES files should be included in providers/liblegacy.a. Use !$disabled{des} instead. Fixes #13865 Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13866)
-rw-r--r--crypto/des/build.info2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/des/build.info b/crypto/des/build.info
index b73e740bec..ad8553a41a 100644
--- a/crypto/des/build.info
+++ b/crypto/des/build.info
@@ -31,7 +31,7 @@ DEFINE[../../providers/liblegacy.a]=$DESDEF
# When all deprecated symbols are removed, libcrypto doesn't export the
# DES functions, so we must include them directly in liblegacy.a
-IF[{- $disabled{'deprecated-3.0'} && !$disabled{"mdc2"} -}]
+IF[{- $disabled{'deprecated-3.0'} && !$disabled{des} -}]
SOURCE[../../providers/liblegacy.a]=$ALL
DEFINE[../../providers/liblegacy.a]=$DESDEF
ENDIF