aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorgeistteufel2011-03-22 00:51:31 +0100
committerAdam Vandenberg2011-03-22 07:53:07 -0700
commit3e4466c2479dbbc1eae9647296c5bf7a118c6988 (patch)
treea1cf7f9ed510967a227c56645485e99744c4aa73 /Library
parentb8e571cc637c8096dc088f74b705c38adce96c57 (diff)
downloadhomebrew-3e4466c2479dbbc1eae9647296c5bf7a118c6988.tar.bz2
encfs: fix missing boost path
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/encfs.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/encfs.rb b/Library/Formula/encfs.rb
index 1a34971c4..e2375a4bf 100644
--- a/Library/Formula/encfs.rb
+++ b/Library/Formula/encfs.rb
@@ -19,7 +19,9 @@ class Encfs < Formula
end
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--with-boost=#{HOMEBREW_PREFIX}"
system "make"
system "make install"
end