aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/source-highlight.rb
diff options
context:
space:
mode:
authorGeoff Reedy2010-12-26 21:39:39 -0700
committerAdam Vandenberg2010-12-27 08:46:18 -0800
commit669fd0882c8500a471c7d64b9ee44227a70f5aff (patch)
treeb2acb3dc0fcf225a486e960465d409b026286003 /Library/Formula/source-highlight.rb
parent855fbaa6fa6b2ae0876e596156549201c5804e75 (diff)
downloadhomebrew-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.rb3
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