Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ AC_CONFIG_MACRO_DIR([m4])
AC_LANG([C])
AC_LANG([C++])

AC_MSG_CHECKING([Check for /usr/bin/md5sum ])
if [[ -f /usr/bin/md5sum ]];
AC_MSG_CHECKING([Check for /usr/bin/md5sum or /usr/local/bin/md5sum ])
if [[ -f /usr/bin/md5sum ]] || [[ -f /usr/local/bin/md5sum ]];
then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
AC_MSG_NOTICE([ /usr/bin/md5sum not found - cannot do make check])
AC_MSG_NOTICE([ /usr/bin/md5sum and /usr/local/bin/md5sum not found - cannot do make check])
fi

AC_ARG_ENABLE(debug,
Expand Down
Loading