diff options
| author | Mike McQuaid | 2017-04-22 21:56:32 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2017-04-22 21:56:32 +0100 |
| commit | 64e2e6e86272ef6ca6bf36a8efcf0a42849c87bb (patch) | |
| tree | 188c4a721bf24c657b64b092c82efc804027d07e | |
| parent | e8ef50d0750b8e3b36427e2fc8878fbcd6f3f443 (diff) | |
| download | brew-64e2e6e86272ef6ca6bf36a8efcf0a42849c87bb.tar.bz2 | |
super: re-add set_cpu_flags.
It's used by ENV.fortran.
Fixes https://github.com/Homebrew/brew/issues/2530
Fixes https://github.com/Homebrew/homebrew-science/issues/5485
| -rw-r--r-- | Library/Homebrew/extend/ENV/super.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Homebrew/extend/ENV/super.rb b/Library/Homebrew/extend/ENV/super.rb index 07c03ec75..4d6d96ad3 100644 --- a/Library/Homebrew/extend/ENV/super.rb +++ b/Library/Homebrew/extend/ENV/super.rb @@ -325,6 +325,9 @@ module Superenv def set_x11_env_if_installed end + + def set_cpu_flags(*) + end end class Array |
