diff options
| author | Caio Chassot | 2011-04-14 23:43:11 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2011-04-14 14:46:45 -0700 |
| commit | 2e9d3c79bb51b1c1375cba514285580151212e8d (patch) | |
| tree | 6870b41a8aa37898fb31bde646971c8c6f467381 /Library/Formula | |
| parent | 3adb09bf9ecfcf3e76258beeb05d87d1b6e3878a (diff) | |
| download | homebrew-2e9d3c79bb51b1c1375cba514285580151212e8d.tar.bz2 | |
readline: fix building dynamic libraries under Lion
Adds "Darwin11" as a recognized OS.
Resolves issue #4782
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/readline.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/readline.rb b/Library/Formula/readline.rb index ea050ad47..651f98a44 100644 --- a/Library/Formula/readline.rb +++ b/Library/Formula/readline.rb @@ -21,6 +21,8 @@ EOS def install # Always build universal, per https://github.com/mxcl/homebrew/issues/issue/899 ENV.universal_binary + # Fix darwin detection for Lion, see https://github.com/mxcl/homebrew/issues/4782 + inreplace 'support/shobj-conf', 'darwin[89]*|darwin10*)', 'darwin[89]*|darwin1[01]*)' system "./configure", "--prefix=#{prefix}", "--mandir=#{man}", "--infodir=#{info}", |
