diff options
author | Carlos Santos <casantos@datacom.ind.br> | 2017-04-23 00:49:16 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-04 22:32:42 +0200 |
commit | 1ae2a571381b849334b27a2b063705834c292367 (patch) | |
tree | 6bbe6a270c8a65efb06083cd214a89e90d18eead /package | |
parent | 1a56b14d57b2326c9a3e8b9f53eddc17b541504a (diff) | |
download | buildroot-1ae2a571381b849334b27a2b063705834c292367.tar.gz buildroot-1ae2a571381b849334b27a2b063705834c292367.zip |
e2fsprogs: add explicit --enable/--disable configure options
Signed-off-by: Carlos Santos <casantos@datacom.ind.br>
[Arnout: don't split up the fuse2fs CONF_OPTS and DEPENDENCIES
handling]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/e2fsprogs/e2fsprogs.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/e2fsprogs/e2fsprogs.mk b/package/e2fsprogs/e2fsprogs.mk index 632fdc250c..a60c69b395 100644 --- a/package/e2fsprogs/e2fsprogs.mk +++ b/package/e2fsprogs/e2fsprogs.mk @@ -40,12 +40,12 @@ HOST_E2FSPROGS_CONF_OPTS = \ E2FSPROGS_CONF_OPTS = \ --bindir=/bin \ --sbindir=/sbin \ - $(if $(BR2_STATIC_LIBS),,--enable-elf-shlibs) \ - $(if $(BR2_PACKAGE_E2FSPROGS_DEBUGFS),,--disable-debugfs) \ - $(if $(BR2_PACKAGE_E2FSPROGS_E2IMAGE),,--disable-imager) \ - $(if $(BR2_PACKAGE_E2FSPROGS_E4DEFRAG),,--disable-defrag) \ + $(if $(BR2_STATIC_LIBS),--disable-elf-shlibs,--enable-elf-shlibs) \ + $(if $(BR2_PACKAGE_E2FSPROGS_DEBUGFS),--enable-debugfs,--disable-debugfs) \ + $(if $(BR2_PACKAGE_E2FSPROGS_E2IMAGE),--enable-imager,--disable-imager) \ + $(if $(BR2_PACKAGE_E2FSPROGS_E4DEFRAG),--enable-defrag,--disable-defrag) \ $(if $(BR2_PACKAGE_E2FSPROGS_FSCK),--enable-fsck,--disable-fsck) \ - $(if $(BR2_PACKAGE_E2FSPROGS_RESIZE2FS),,--disable-resizer) \ + $(if $(BR2_PACKAGE_E2FSPROGS_RESIZE2FS),--enable-resizer,--disable-resizer) \ --disable-uuidd \ --disable-libblkid \ --disable-libuuid \ |