From d8cd2d0833e0e8d6f41fcf481ea27a21358b21d2 Mon Sep 17 00:00:00 2001 From: Robert Clausecker Date: Fri, 25 Oct 2024 22:39:06 +0200 Subject: [PATCH] depend-cleanup.sh: clean up after hash function removal from libcrypt The hash function removal changed the mangled names of MD[45] and SHA{256,512} hash function identifiers. Clean these files to pick up the symbol change. Reported by: bapt Tested by: brooks Fixes: cb5e41b160838880de7d03100afa02e4edee5a9e --- tools/build/depend-cleanup.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/build/depend-cleanup.sh b/tools/build/depend-cleanup.sh index 3678e3368b39..6e7585f0afe6 100755 --- a/tools/build/depend-cleanup.sh +++ b/tools/build/depend-cleanup.sh @@ -225,3 +225,9 @@ if [ -e "$f" ]; then run rm -f "$p"/*.inc fi fi + +# 20241025 cb5e41b16083 Unbundle hash functions fom lib/libcrypt +clean_dep lib/libcrypt crypt-md5 c +clean_dep lib/libcrypt crypt-nthash c +clean_dep lib/libcrypt crypt-sha256 c +clean_dep lib/libcrypt crypt-sha512 c