diff options
| author | Karel Zak <kzak@redhat.com> | 2025-10-02 13:38:13 +0200 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2025-10-02 13:38:13 +0200 |
| commit | eb0e08a76e3ebd4571b957e727847060304c32bb (patch) | |
| tree | 92c80ab0a4260ed5db7e33532f600a786a8b9a59 /bash-completion | |
| parent | aa9c79e3e838cbb80ab70aa3bc6d8b4902bbf22f (diff) | |
| download | util-linux-eb0e08a76e3ebd4571b957e727847060304c32bb.tar.gz | |
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 <kzak@redhat.com>
Diffstat (limited to 'bash-completion')
| -rw-r--r-- | bash-completion/Makemodule.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bash-completion/Makemodule.am b/bash-completion/Makemodule.am index 70d836a693..9812052f08 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 += \ |
