summaryrefslogtreecommitdiff
path: root/strata/tools
diff options
context:
space:
mode:
authorTiago Gomes <tiago.gomes@codethink.co.uk>2015-02-04 14:58:47 +0000
committerTiago Gomes <tiago.gomes@codethink.co.uk>2015-02-12 11:35:23 +0000
commit57ce68fea03e8985888ab2a875f5efbc79d7b07a (patch)
treeec6a9183a3c9471fa2c8ecbce608fb614a35a567 /strata/tools
parent9979c36b008d1803d90fb4dfe849233b28b03196 (diff)
downloaddefinitions-57ce68fea03e8985888ab2a875f5efbc79d7b07a.tar.gz
Update to btrfs-progs v3.18.2
acl and e2fsprogs are new dependencies of btrfs-progs.
Diffstat (limited to 'strata/tools')
-rw-r--r--strata/tools/e2fsprogs.morph21
1 files changed, 0 insertions, 21 deletions
diff --git a/strata/tools/e2fsprogs.morph b/strata/tools/e2fsprogs.morph
deleted file mode 100644
index 801f8abe..00000000
--- a/strata/tools/e2fsprogs.morph
+++ /dev/null
@@ -1,21 +0,0 @@
-name: e2fsprogs
-kind: chunk
-build-system: autotools
-configure-commands:
-# Configure with the usual paths for binaries and config
-# but also disable whatever we can that is already provided by util-linux
-# Disabling e2fsprofs' libblkid does not work, but we don't have to
-# install it.
-- |
- ./configure --prefix="$PREFIX" --sysconfdir=/etc \
- --disable-libuuid --disable-uuidd --disable-fsck
-install-commands:
-# e2fsprogs also includes tools that are provided by util-linux, so we
-# need to selectively exclude them. Removing them directly from DESTDIR
-# causes problems, so we need to remove them beforehand.
-- |
- td="$(mktemp -d)"
- make DESTDIR="$td" install
- find "$td" \( -name blkid -o -name findfs -o -name fsck \) -delete
- find "$td" \( -name blkid.8 -o -name findfs.8 \) -delete
- mv "$td"/* "$DESTDIR"