From 376227c55ebcd028ea310180040bea45ab82f4d6 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Fri, 22 Jan 2016 21:32:15 -0500 Subject: configure.ac: Fix name of sha256sum utility Well that was a stupid mistake. --- diff --git a/configure.ac b/configure.ac index 18eafaf..a30d981 100644 --- a/configure.ac +++ b/configure.ac @@ -108,7 +108,7 @@ AC_ARG_WITH( ) AC_ARG_WITH( [sha256sum], - [AS_HELP_STRING([--with-sha256sum=PATH], [path to sha512sum utility])], + [AS_HELP_STRING([--with-sha256sum=PATH], [path to sha256sum utility])], [ case "${withval}" in 'yes'|'') @@ -125,7 +125,7 @@ AC_ARG_WITH( esac ], [ - AC_PATH_PROG([SHA256SUM], [sha512sum]) + AC_PATH_PROG([SHA256SUM], [sha256sum]) if test -z "${SHA256SUM}"; then AC_MSG_ERROR([sha256sum not found]) fi -- cgit v0.9.1