diff options
| author | geistteufel | 2011-03-22 00:51:31 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-22 07:53:07 -0700 |
| commit | 3e4466c2479dbbc1eae9647296c5bf7a118c6988 (patch) | |
| tree | a1cf7f9ed510967a227c56645485e99744c4aa73 | |
| parent | b8e571cc637c8096dc088f74b705c38adce96c57 (diff) | |
| download | homebrew-3e4466c2479dbbc1eae9647296c5bf7a118c6988.tar.bz2 | |
encfs: fix missing boost path
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/encfs.rb | 4 |
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 |
