From: Sami Kerola Date: Wed, 11 Nov 2020 21:10:32 +0000 (+0000) Subject: fdformat: remove command from default build X-Git-Tag: v2.37-rc1~275^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=13b26e3c36d110b4e372f93762e25fc40c94d9e0;p=thirdparty%2Futil-linux.git fdformat: remove command from default build It should be safe assumption a command related to floppy disks does not need to be part of default build. Notice that the reference commit removed floppy driver from linux about year ago. Virtual floppies might exist they should not need low-level formatting. But if someone really needs this enabling the build in that case is better than pushing the binary by default to many many systems that install util-linux. Reference: https://github.com/torvalds/linux/commit/47d6a7607443ea43dbc4d0f371bf773540a8f8f4 Signed-off-by: Sami Kerola --- diff --git a/configure.ac b/configure.ac index a9b13c3dba..8f026c85a0 100644 --- a/configure.ac +++ b/configure.ac @@ -1504,8 +1504,8 @@ AM_CONDITIONAL([BUILD_MINIX], [test "x$build_minix" = xyes]) AC_ARG_ENABLE([fdformat], - AS_HELP_STRING([--disable-fdformat], [do not build fdformat]), - [], [UL_DEFAULT_ENABLE([fdformat], [check])] + AS_HELP_STRING([--enable-fdformat], [build fdformat]), + [], [UL_DEFAULT_ENABLE([fdformat], [no])] ) UL_BUILD_INIT([fdformat]) UL_REQUIRES_LINUX([fdformat])