Files
termux-packages/packages/lesspipe/configure.patch
termux-pacman-bot 3f16733609 bump(main/lesspipe): 2.19
The option to install both bash and zsh completions was removed in
612b3116ef
2025-07-19 04:44:29 +00:00

16 lines
438 B
Diff

Install both bash and zsh shell completions.
--- a/configure
+++ b/configure
@@ -44,8 +44,8 @@
# gererate Makefile
my @bad = ();
my $shell = check_shell_vers();
-my $no_bash = (grep {/bash/} @bad);
-my $no_zsh = (grep {/zsh/} @bad);
+my $no_bash = 0;
+my $no_zsh = 0;
my $bash_complete_dir = "$prefix/share/bash-completion";
# override prefix and use the system defined directory if known
if (`pkg-config --version 2>/dev/null`) {