aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorMisty De Meo2013-10-07 00:15:03 -0700
committerMisty De Meo2013-10-07 00:15:03 -0700
commitd5ac2deefbc0b8f39f30c6fa47f8aa31ca50e247 (patch)
tree2f09d00379987ec86d4a7fbb926cd54585b831f4 /Library/Homebrew
parent8e7fcaab1e050576519703ad6ad575a15414ce37 (diff)
downloadbrew-d5ac2deefbc0b8f39f30c6fa47f8aa31ca50e247.tar.bz2
Tab#cxxstdlib: remove default stdlib
Fixes Homebrew/homebrew#23089.
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/tab.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/tab.rb b/Library/Homebrew/tab.rb
index 3d549ac02..caf261a28 100644
--- a/Library/Homebrew/tab.rb
+++ b/Library/Homebrew/tab.rb
@@ -97,7 +97,7 @@ class Tab < OpenStruct
def cxxstdlib
# Older tabs won't have these values, so provide sensible defaults
- lib = stdlib || :libstdcxx
+ lib = stdlib
cc = compiler || MacOS.default_compiler
CxxStdlib.new(lib.to_sym, cc.to_sym)
end