aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cmd/config.rb (renamed from Library/Homebrew/cmd/--config.rb)2
-rw-r--r--Library/Homebrew/cmd/help.rb2
-rw-r--r--Library/Homebrew/exceptions.rb2
-rw-r--r--Library/Homebrew/formula.rb2
-rw-r--r--Library/Homebrew/os/mac/hardware.rb2
5 files changed, 5 insertions, 5 deletions
diff --git a/Library/Homebrew/cmd/--config.rb b/Library/Homebrew/cmd/config.rb
index a6df1a2c6..fb3fb7772 100644
--- a/Library/Homebrew/cmd/--config.rb
+++ b/Library/Homebrew/cmd/config.rb
@@ -1,7 +1,7 @@
require 'hardware'
module Homebrew extend self
- def __config
+ def config
dump_verbose_config
end
diff --git a/Library/Homebrew/cmd/help.rb b/Library/Homebrew/cmd/help.rb
index b76e363f7..d185c41e2 100644
--- a/Library/Homebrew/cmd/help.rb
+++ b/Library/Homebrew/cmd/help.rb
@@ -12,7 +12,7 @@ Example usage:
Troubleshooting:
brew doctor
brew install -vd FORMULA
- brew [--env | --config]
+ brew [--env | config]
Brewing:
brew create [URL [--no-fetch]]
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb
index 8c4abc126..7cdd24cb1 100644
--- a/Library/Homebrew/exceptions.rb
+++ b/Library/Homebrew/exceptions.rb
@@ -190,7 +190,7 @@ class BuildError < Homebrew::InstallationError
puts " #{tap_issues_url}"
end
else
- require 'cmd/--config'
+ require 'cmd/config'
require 'cmd/--env'
unless formula.core_formula?
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 9b8de904e..d6a6f60e1 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -570,7 +570,7 @@ class Formula
f.flush
Kernel.system "/usr/bin/tail", "-n", "5", logfn unless ARGV.verbose?
f.puts
- require 'cmd/--config'
+ require 'cmd/config'
Homebrew.write_build_config(f)
raise BuildError.new(self, cmd, args, $?)
end
diff --git a/Library/Homebrew/os/mac/hardware.rb b/Library/Homebrew/os/mac/hardware.rb
index e2778590a..7bda71fa4 100644
--- a/Library/Homebrew/os/mac/hardware.rb
+++ b/Library/Homebrew/os/mac/hardware.rb
@@ -58,7 +58,7 @@ module MacCPUs
:g4e # PowerPC 7450
when 100
# This is the only 64-bit PPC CPU type, so it's useful
- # to distinguish in `brew --config` output and in bottle tags
+ # to distinguish in `brew config` output and in bottle tags
MacOS.prefer_64_bit? ? :g5_64 : :g5 # PowerPC 970
else
:dunno