aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMisty De Meo2013-10-07 00:15:03 -0700
committerMisty De Meo2013-10-07 00:15:03 -0700
commitf05865ba9b3151a467e511627989db89aec93d2d (patch)
tree76930c22749927dcbdd798e1f270f39901b0abd6 /Library
parent5c0c378574a9c4efd144046205e6e4bbae307ba9 (diff)
downloadhomebrew-f05865ba9b3151a467e511627989db89aec93d2d.tar.bz2
Tab#cxxstdlib: remove default stdlib
Fixes #23089.
Diffstat (limited to 'Library')
-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