When wget is missing building the fedabipkgdiff tool is disabled.
This patch fixes diagnostics in that case.
* configure.ac: When wget is missing then make the disabling of
the building of the fedabipkgdiff tool show up in the
configuration summary and emit a notice.
Signed-off-by: Dodji Seketeli <dodji@redhat.com>
AC_PATH_PROG(WGET, wget, no)
if test x$WGET = xno; then
+ ENABLE_FEDABIPKGDIFF=no
if test x$MISSING_FEDABIPKGDIFF_DEP_FATAL = xyes; then
AC_MSG_ERROR(could not find the wget program)
else
MISSING_FEDABIPKGDIFF_DEP=yes
+ AC_MSG_NOTICE([could not find the wget program])
+ AC_MSG_NOTICE([disabling fedabipkgdiff as a result])
fi
fi