diff options
author | Adam Spiers <adamspiers@users.sourceforge.net> | 2002-03-06 14:22:40 +0000 |
---|---|---|
committer | Adam Spiers <adamspiers@users.sourceforge.net> | 2002-03-06 14:22:40 +0000 |
commit | 824e519964843a1c7ca372b7fe0dc32b554e6929 (patch) | |
tree | b6f1b3848c6e58b5bfb1487f2ffa837394f01fc6 /Completion | |
parent | 533cc753f76729aceb1d9ea1b9fc894256e09027 (diff) | |
download | zsh-824e519964843a1c7ca372b7fe0dc32b554e6929.tar.gz zsh-824e519964843a1c7ca372b7fe0dc32b554e6929.tar.xz zsh-824e519964843a1c7ca372b7fe0dc32b554e6929.zip |
16769: Completion/Unix/Command/_gcc: fix typo
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_gcc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_gcc b/Completion/Unix/Command/_gcc index f297126d1..e218a4414 100644 --- a/Completion/Unix/Command/_gcc +++ b/Completion/Unix/Command/_gcc @@ -7,7 +7,7 @@ if [[ "$comptype" = values ]]; then compset -q words=( fake "$words[@]" ) (( CURRENT++ )) - if ("$service" = LDFLAGS ]]; then + if [[ "$service" = LDFLAGS ]]; then args2=( '-R:runtime path:->rundir' ) else args2=() |