Kaydet (Commit) adf0076b authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Look for "shasum" (as on Mac OS X) too

Hmm, /usr/bin/shasum is a Perl implementation (!), should we use
"openssl sha1" instead?
üst 313a47fa
...@@ -3616,9 +3616,9 @@ AC_MSG_RESULT([no, obsolete]) ...@@ -3616,9 +3616,9 @@ AC_MSG_RESULT([no, obsolete])
dnl =================================================================== dnl ===================================================================
dnl Search all the common names for sha1sum dnl Search all the common names for sha1sum
dnl =================================================================== dnl ===================================================================
AC_PATH_PROGS(SHA1SUM, sha1sum sha1) AC_PATH_PROGS(SHA1SUM, sha1sum sha1 shasum)
if test -z "$SHA1SUM"; then if test -z "$SHA1SUM"; then
AC_MSG_ERROR([install sha1sum to run this script]) AC_MSG_ERROR([install the approproate SHA-1 checksumming program for this OS])
fi fi
dnl =================================================================== dnl ===================================================================
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment