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 | |
parent | 533cc753f76729aceb1d9ea1b9fc894256e09027 (diff) | |
download | zsh-824e519964843a1c7ca372b7fe0dc32b554e6929.tar.gz zsh-824e519964843a1c7ca372b7fe0dc32b554e6929.tar.xz zsh-824e519964843a1c7ca372b7fe0dc32b554e6929.zip |
16769: Completion/Unix/Command/_gcc: fix typo
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Completion/Unix/Command/_gcc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index a35ef5ae2..9af27815a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-03-06 Adam Spiers <adam@spiers.net> + + * 16769: Completion/Unix/Command/_gcc: fix typo + 2002-03-05 Peter Stephenson <pws@csr.com> * unposted: Config/version.mk: version 4.1.0-dev-4. 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=() |