From eb0e08a76e3ebd4571b957e727847060304c32bb Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 2 Oct 2025 13:38:13 +0200 Subject: [PATCH] bash-completion: add bits to dist tarball The bits command was added in commit 6e1301d59 (text-utils: add bits command) but the bash-completion file was not added to the autotools Makemodule.am, causing it to be missing from release tarballs. This resulted in meson build failures when using the tarball with bash-completion installed, as meson.build references the file but it doesn't exist in the tarball. Fixes: https://github.com/util-linux/util-linux/issues/3766 Signed-off-by: Karel Zak --- bash-completion/Makemodule.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bash-completion/Makemodule.am b/bash-completion/Makemodule.am index 70d836a69..9812052f0 100644 --- a/bash-completion/Makemodule.am +++ b/bash-completion/Makemodule.am @@ -127,6 +127,9 @@ endif if BUILD_BFS dist_bashcompletion_DATA += bash-completion/mkfs.bfs endif +if BUILD_BITS +dist_bashcompletion_DATA += bash-completion/bits +endif if BUILD_MINIX dist_bashcompletion_DATA += \ -- 2.47.3