diff options
| author | Jack Nagel | 2013-01-27 21:09:44 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-01-27 21:20:09 -0600 |
| commit | 90e254f8b31e1775253fe4548e6f738a26b48017 (patch) | |
| tree | 9dad1cd1f067cd3a9cc85c8e9d986852a2f63b93 /Library | |
| parent | c31ecb12cbd3a74ff366b04a1194c94322ff5e49 (diff) | |
| download | homebrew-90e254f8b31e1775253fe4548e6f738a26b48017.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 |
