summaryrefslogtreecommitdiff
path: root/build_tools
diff options
context:
space:
mode:
authorJenkins2 <jenkins2@gerrit.asterisk.org>2018-01-18 10:17:49 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2018-01-18 10:17:49 -0600
commit21f3d9d095c8a9b067923777b8be418a4de7c6ea (patch)
treec4a14854aed94963bf886443c14795a5246ef99e /build_tools
parent450da19111633224c8f04e34c4670f4f061e42c7 (diff)
parent2a1b52cc67ec302e1e2628fd5aac7a52b8aecdc2 (diff)
Merge "BuildSystem: Use the detected name for MD5 everywhere."
Diffstat (limited to 'build_tools')
-rwxr-xr-xbuild_tools/download_externals2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_tools/download_externals b/build_tools/download_externals
index 62b128aaa..f27271fd5 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