From: Alexander Traud Date: Wed, 17 Jan 2018 14:36:14 +0000 (+0100) Subject: BuildSystem: Use the detected name for MD5 everywhere. X-Git-Tag: 16.0.0-rc1~410^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a1b52cc67ec302e1e2628fd5aac7a52b8aecdc2;p=thirdparty%2Fasterisk.git BuildSystem: Use the detected name for MD5 everywhere. Affacted the (automatic) download script for external modules: ./build_tools/download_externals ASTERISK-27596 Change-Id: If4c3176f7bf58df32fec6e02a659f1a78d57cf4b --- diff --git a/build_tools/download_externals b/build_tools/download_externals index efeb6c53c6..e12feb8fc8 100755 --- a/build_tools/download_externals +++ b/build_tools/download_externals @@ -165,7 +165,7 @@ if [[ -f ${DESTDIR}${ASTMODDIR}/${module_name}.manifest.xml ]] ; then fi fi - cs=$(md5sum ${f} | cut -b1-32) + cs=$(${MD5} ${f} | cut -b1-32) if [[ "${cs}" != "${sum}" ]] ; then echo Checksum mismatch: ${f} need_install=1