Fix crypto/des/build.info
authorRichard Levitte <levitte@openssl.org>
Wed, 13 Jan 2021 22:55:51 +0000 (23:55 +0100)
committerRichard Levitte <levitte@openssl.org>
Fri, 15 Jan 2021 10:19:25 +0000 (11:19 +0100)
!$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)

crypto/des/build.info

index b73e740becabe16e0194a3449638528c2b68ffc2..ad8553a41a75f466f5c65de541b71c317d394169 100644 (file)
@@ -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