diff options
| author | Jack Nagel | 2013-01-27 21:09:44 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-01-27 21:20:09 -0600 |
| commit | 41dec56d2985a723aa9682eef344bf33f3a02829 (patch) | |
| tree | f35f120f745dd1aac6290d9c133653e3e8a8c13e /Library | |
| parent | 68d312c46fc0251a525a300b75c9a3c0c3c3826e (diff) | |
| download | brew-41dec56d2985a723aa9682eef344bf33f3a02829.tar.bz2 | |
Invoke super() in requirement subclasses
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/requirements.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Homebrew/requirements.rb b/Library/Homebrew/requirements.rb index 485b86f4e..4ca9496eb 100644 --- a/Library/Homebrew/requirements.rb +++ b/Library/Homebrew/requirements.rb @@ -108,6 +108,7 @@ class MPIDependency < Requirement @lang_list = lang_list @non_functional = [] @unknown_langs = [] + super() end def mpi_wrapper_works? compiler @@ -184,6 +185,7 @@ class ConflictRequirement < Requirement @formula = formula @name = name @opts = opts + super() end def message |
