diff options
| author | Geoff Reedy | 2010-12-26 21:39:39 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2010-12-27 08:46:18 -0800 | 
| commit | 669fd0882c8500a471c7d64b9ee44227a70f5aff (patch) | |
| tree | b2acb3dc0fcf225a486e960465d409b026286003 /Library/Formula/source-highlight.rb | |
| parent | 855fbaa6fa6b2ae0876e596156549201c5804e75 (diff) | |
| download | homebrew-669fd0882c8500a471c7d64b9ee44227a70f5aff.tar.bz2 | |
source-highlight: specify boost prefix
Fixes build of source-highlight when brew isn't installed to /usr/local
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/source-highlight.rb')
| -rw-r--r-- | Library/Formula/source-highlight.rb | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/Library/Formula/source-highlight.rb b/Library/Formula/source-highlight.rb index ff855ecb4..30ca067be 100644 --- a/Library/Formula/source-highlight.rb +++ b/Library/Formula/source-highlight.rb @@ -9,7 +9,8 @@ class SourceHighlight <Formula    def install      system "./configure", "--disable-dependency-tracking", -                          "--prefix=#{prefix}" +                          "--prefix=#{prefix}", +                          "--with-boost=#{HOMEBREW_PREFIX}"      system "make install"    end  end | 
