aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Mahoney <jeffm@suse.com>2016-06-07 10:27:44 -0400
committerJeff Mahoney <jeffm@suse.com>2016-06-07 10:29:14 -0400
commit14b57362f75cd5ec72299fe895ba3521b4828011 (patch)
treec721175f8eae2821dd15ade31e09a9e2e787fb44
parent278866b5be07cdca3510649bebf715cdfdde63bb (diff)
downloadreiserfsprogs-14b57362f75cd5ec72299fe895ba3521b4828011.tar.gz
build: libcom_err is required
configure is issuing a warning when libcom_err is missing but it should fail instead. Signed-off-by: Jeff Mahoney <jeffm@suse.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index b975f19..c77b175 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,7 +29,7 @@ AC_CHECK_LIB(uuid, uuid_generate, , AC_MSG_WARN(libuuid could not be found))
UUID_LIBS="$LIBS"
AC_SUBST(UUID_LIBS)
-AC_CHECK_LIB(com_err, _et_list, , AC_MSG_WARN(libcom_err could not be found))
+AC_CHECK_LIB(com_err, _et_list, , AC_MSG_ERROR(libcom_err could not be found))
COM_ERR_LIBS="$LIBS"
AC_SUBST(COM_ERR_LIBS)