aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXu Cheng2015-05-27 21:33:11 +0800
committerXu Cheng2015-05-29 17:02:23 +0800
commit0f4cbd99b59f212a608f6c7967950aa2c649f99b (patch)
treed590b8d30d139ece986d44835d26593a7d29f692
parentb931b98d356c492c389e79d0a11cbed56f8625ac (diff)
downloadbrew-0f4cbd99b59f212a608f6c7967950aa2c649f99b.tar.bz2
cxxstdlib: use Formula#full_name
-rw-r--r--Library/Homebrew/cxxstdlib.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cxxstdlib.rb b/Library/Homebrew/cxxstdlib.rb
index 7c3beafc8..30b16854c 100644
--- a/Library/Homebrew/cxxstdlib.rb
+++ b/Library/Homebrew/cxxstdlib.rb
@@ -6,7 +6,7 @@ class CxxStdlib
class CompatibilityError < StandardError
def initialize(formula, dep, stdlib)
super <<-EOS.undent
- #{formula.name} dependency #{dep.name} was built with a different C++ standard
+ #{formula.full_name} dependency #{dep.name} was built with a different C++ standard
library (#{stdlib.type_string} from #{stdlib.compiler}). This may cause problems at runtime.
EOS
end