diff options
author | Roger Leigh <rleigh@debian.org> | 2013-09-08 17:05:56 +0100 |
---|---|---|
committer | Roger Leigh <rleigh@debian.org> | 2013-09-08 20:08:11 +0100 |
commit | 2a07424856cfa6ccf5712e977335849e4a0bf05c (patch) | |
tree | 895effd36569941adaafb5605ab8ff2e4c71f357 | |
parent | fa71279d582dd7083a4ad9a211dbbbfb32a2536a (diff) | |
download | schroot-2a07424856cfa6ccf5712e977335849e4a0bf05c.tar.gz |
build: Drop check for btrfsctl
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index c7af6ccd..ec14c494 100644 --- a/configure.ac +++ b/configure.ac @@ -260,8 +260,7 @@ if test -z "$LVCREATE" || test -z "$LVREMOVE"; then fi HAVE_BTRFS="yes" AC_PATH_PROG([BTRFS], [btrfs], [], [$PATH:/sbin:/usr/sbin]) -AC_PATH_PROG([BTRFSCTL], [btrfsctl], [], [$PATH:/sbin:/usr/sbin]) -if test -z "$BTRFS" || test -z "$BTRFSCTL"; then +if test -z "$BTRFS"; then HAVE_BTRFS="no" fi HAVE_LOOPBACK="yes" |