summaryrefslogtreecommitdiff
path: root/strata/core/e2fsprogs.morph
diff options
context:
space:
mode:
Diffstat (limited to 'strata/core/e2fsprogs.morph')
-rw-r--r--strata/core/e2fsprogs.morph27
1 files changed, 0 insertions, 27 deletions
diff --git a/strata/core/e2fsprogs.morph b/strata/core/e2fsprogs.morph
deleted file mode 100644
index 6f32ad38..00000000
--- a/strata/core/e2fsprogs.morph
+++ /dev/null
@@ -1,27 +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-libblkid
-build-commands:
-# Without this, the static archive libcom_err is generated without
-# position independant code; later when samba tries to create a shared
-# library linking to this archive, we get errors.
-- make CFLAGS="-g -O2 -DHAVE_CONFIG_H -fPIC"
-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
- make DESTDIR="$td" install-libs
- find "$td" \( -name blkid -o -name findfs -o \) -delete
- find "$td" \( -name blkid.8 -o -name findfs.8 \) -delete
- mv "$td"/* "$DESTDIR"