diff options
author | dana <dana@dana.is> | 2018-06-02 17:15:48 -0500 |
---|---|---|
committer | Oliver Kiddle <okiddle@yahoo.co.uk> | 2018-06-09 10:00:50 +0200 |
commit | 9767ee88495d49df36b54b6fc58232ad76f8b020 (patch) | |
tree | 1b9c2c3820e34b12ff397447c64dc5423f6075e9 /Completion/Unix | |
parent | 880098352cdcbe20e7b237e144869296537a07f1 (diff) | |
download | zsh-9767ee88495d49df36b54b6fc58232ad76f8b020.tar.gz zsh-9767ee88495d49df36b54b6fc58232ad76f8b020.tar.xz zsh-9767ee88495d49df36b54b6fc58232ad76f8b020.zip |
42918: adapt detection of GNU variant of ldd to work on Ubuntu
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_ldd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_ldd b/Completion/Unix/Command/_ldd index 19b8a9105..1de1659a5 100644 --- a/Completion/Unix/Command/_ldd +++ b/Completion/Unix/Command/_ldd @@ -1,6 +1,6 @@ #compdef ldd -if _pick_variant gnu='(GNU|EGLIBC|Gentoo)' unix --version; then +if _pick_variant gnu='(Free Soft|GNU|EGLIBC|Gentoo)' unix --version; then args=( '(- *)--version[display version information]' '(- *)--help[display help information]' |