summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorQu Wenruo <quwenruo@cn.fujitsu.com>2016-04-14 14:24:34 +0800
committerDavid Sterba <dsterba@suse.com>2016-05-02 14:45:00 +0200
commitec4f8776fd94f5b62f2bd341f4ee075b28aaa20c (patch)
tree0479097192a2fdeec8e29b342e51f37f3558ba8e /configure.ac
parentc54b5a545efd2c7076e1fa8863b3ec4f00cdb216 (diff)
btrfs-progs: Restrict e2fsprogs version for convert
We want to support version 1.41 due to longterm and enterprise distros, make the check explicit. Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index fc343ea1..797eb790 100644
--- a/configure.ac
+++ b/configure.ac
@@ -105,7 +105,7 @@ AS_IF([test "x$enable_convert" = xyes], [DISABLE_BTRFSCONVERT=0], [DISABLE_BTRFS
AC_SUBST([DISABLE_BTRFSCONVERT])
if test "x$enable_convert" = xyes; then
- PKG_CHECK_MODULES(EXT2FS, [ext2fs])
+ PKG_CHECK_MODULES(EXT2FS, [ext2fs >= 1.41])
PKG_CHECK_MODULES(COM_ERR, [com_err])
fi