diff options
author | Carlos Santos <casantos@datacom.ind.br> | 2017-04-23 00:49:15 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-04 22:32:25 +0200 |
commit | 1a56b14d57b2326c9a3e8b9f53eddc17b541504a (patch) | |
tree | 9646afc0bf81a8ef17a4cd4d049f957e6b743258 | |
parent | 888ea6e557c9f977aa6007026507beaeb9c1a566 (diff) | |
download | buildroot-1a56b14d57b2326c9a3e8b9f53eddc17b541504a.tar.gz buildroot-1a56b14d57b2326c9a3e8b9f53eddc17b541504a.zip |
e2fsprogs: disable unneeded features for host
We don't need e2initrd_helper or the test I/O manager for the host, just
like we don't need it for the target.
Signed-off-by: Carlos Santos <casantos@datacom.ind.br>
[Arnout: don't add --disable-rpath, since we *do* need rpath for the
host; otherwise we have to explicitly pass LD_LIBRARY_PATH to be able
to run tools linked with util-linux' libuuid/libblkid]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/e2fsprogs/e2fsprogs.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/e2fsprogs/e2fsprogs.mk b/package/e2fsprogs/e2fsprogs.mk index e0a7fa9354..632fdc250c 100644 --- a/package/e2fsprogs/e2fsprogs.mk +++ b/package/e2fsprogs/e2fsprogs.mk @@ -28,10 +28,12 @@ endif # Disable fuse2fs as well to avoid carrying over deps, and it's unused HOST_E2FSPROGS_CONF_OPTS = \ --disable-defrag \ + --disable-e2initrd-helper \ --disable-fuse2fs \ --disable-libblkid \ --disable-libuuid \ - --enable-symlink-install + --enable-symlink-install \ + --disable-testio-debug # Set the binary directories to "/bin" and "/sbin" to override programs # installed by busybox. |