diff options
| author | Anil Madhavapeddy | 2011-12-06 19:50:40 +0000 | 
|---|---|---|
| committer | Jack Nagel | 2012-02-14 18:04:49 -0600 | 
| commit | 712d797fbd4cf394470ec494d3478351d749cf37 (patch) | |
| tree | 08382c1d78a8e131e3d3b92bbd8d692461006370 /Library/Formula/objective-caml.rb | |
| parent | 97e8e5aa0bff72cc1d9a45ee48bfe69be1084655 (diff) | |
| download | homebrew-712d797fbd4cf394470ec494d3478351d749cf37.tar.bz2 | |
ocaml: install compiler-libs
There are some optional libraries built by the compiler that are used by
3rd party packages to create interactive toplevels. Debian installs the
optional files in lib/ocaml/compiler-libs, so this commit follows the
same convention.
Closes #10175.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/objective-caml.rb')
| -rw-r--r-- | Library/Formula/objective-caml.rb | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Formula/objective-caml.rb b/Library/Formula/objective-caml.rb index 786b9b0a9..fd72939dc 100644 --- a/Library/Formula/objective-caml.rb +++ b/Library/Formula/objective-caml.rb @@ -20,6 +20,7 @@ class ObjectiveCaml < Formula      system "make opt"      system "make opt.opt"      system "make PREFIX=#{prefix} install" +    (lib+'ocaml/compiler-libs').install 'typing', 'parsing', 'utils'      # site-lib in the Cellar will be a symlink to the HOMEBREW_PREFIX location,      # which is mkpath'd by Keg#link when something installs into it  | 
