diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2015-11-03 06:06:56 -0600 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2015-11-03 07:25:34 -0600 |
commit | 8218743e1eda6d279d6366739f196703640c8c39 (patch) | |
tree | d10262385e01dd3277795e9b65a7215b7137ec42 /configure.ac | |
parent | 8ba576d0e698aebd153c4276aa024dcc5fc99525 (diff) |
build-sys: temporarily lower libmount version check
util-linux 2.27.1's configure.ac still claims to be 2.27.0, which breaks our
version check. Lower it back to 2.27.0 until util-linux gets a fixed tarball.
See #1754
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 88cb76667f..c96b9fb1d9 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.1 ], +PKG_CHECK_MODULES(MOUNT, [ mount >= 2.27 ], [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]) |