diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2015-11-02 10:05:20 -0600 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2015-11-02 10:05:20 -0600 |
commit | 1d40ddbfd35fa500dcf4312621c235ffe86d28e5 (patch) | |
tree | 5ee40ae1aa5704ddf5666f59f8e64287e22c39d1 /configure.ac | |
parent | 0fc85c8670bfe2ea4af99765e79aaf789f3ed7e9 (diff) |
core: drop check for /etc/mtab
util-linux 2.27.1 now entirely stops looking at /etc/mtab, so we don't need to
verify /etc/mtab during early boot any more. Later on, tmpfiles.d/etc.conf will
fix /etc/mtab anyway, so there's not even a point in warning about it.
Drop test_mtab() and bump the util-linux dependency to >= 2.17.1.
Fixes #1495
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c96b9fb1d9..88cb76667f 100644 --- a/configure.ac +++ b/configure.ac @@ -437,7 +437,7 @@ AM_CONDITIONAL(HAVE_BLKID, [test "$have_blkid" = "yes"]) # ------------------------------------------------------------------------------ have_libmount=no -PKG_CHECK_MODULES(MOUNT, [ mount >= 2.27 ], +PKG_CHECK_MODULES(MOUNT, [ mount >= 2.27.1 ], [AC_DEFINE(HAVE_LIBMOUNT, 1, [Define if libmount is available]) have_libmount=yes], have_libmount=no) if test "x$have_libmount" = xno; then AC_MSG_ERROR([*** libmount support required but libraries not found]) |