From faa77e82838be68745682b055df8f5739b8a0d1f Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sun, 3 Nov 2013 11:45:26 -0600 Subject: [PATCH] Remove --use-gcc and friends from completion scripts --- Library/Contributions/brew_bash_completion.sh | 6 ------ Library/Contributions/brew_fish_completion.fish | 3 --- 2 files changed, 9 deletions(-) diff --git a/Library/Contributions/brew_bash_completion.sh b/Library/Contributions/brew_bash_completion.sh index 7861b93b30..b6dfe18a5e 100644 --- a/Library/Contributions/brew_bash_completion.sh +++ b/Library/Contributions/brew_bash_completion.sh @@ -207,9 +207,6 @@ _brew_install () --force --git --HEAD - --use-clang - --use-gcc - --use-llvm " else __brewcomp " @@ -221,9 +218,6 @@ _brew_install () --HEAD --ignore-dependencies --interactive - --use-clang - --use-gcc - --use-llvm --verbose $(brew options --compact "$prv" 2>/dev/null) " diff --git a/Library/Contributions/brew_fish_completion.fish b/Library/Contributions/brew_fish_completion.fish index df13a6f051..e0c6e3262f 100644 --- a/Library/Contributions/brew_fish_completion.fish +++ b/Library/Contributions/brew_fish_completion.fish @@ -137,9 +137,6 @@ complete -c brew -s f -l force -n '__fish_complete_brew_command force' -d "Insta complete -c brew -s i -l interactive -n '__fish_complete_brew_command install' -d "Open a subshell to install manually" complete -c brew -l git -n '__fish_complete_brew_command install' -d 'Create a git repo (useful for making patches)' complete -c brew -l fresh -n '__fish_complete_brew_command install' -d "Do not reuse options from previous installs" -complete -c brew -l use-clang -n '__fish_complete_brew_command install' -d "Attempt to compile using Clang" -complete -c brew -l use-llvm -n '__fish_complete_brew_command install' -d "Attempt to compile using LLVM" -complete -c brew -l use-gcc -n '__fish_complete_brew_command install' -d "Attempt to compile using GCC" complete -c brew -l build-from-source -n '__fish_complete_brew_command install' -d "Compile from source even if a bottle is provided" complete -c brew -l devel -n '__fish_complete_brew_command install' -d "Install the development version" complete -c brew -l HEAD -n '__fish_complete_brew_command install' -d "Install the HEAD version"