diff options
-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=() |