aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMichael Blakeley2010-12-09 11:24:33 -0800
committerAdam Vandenberg2010-12-09 11:37:30 -0800
commit4ebf6cc684d17e01e27d092f11b4198a6b6d340c (patch)
tree8c3f0b657c2ca6f9ee17ab64b1bceceac64bc74b /Library/Formula
parenta768123bbd06605e6bd01569663345b240f4ef24 (diff)
downloadhomebrew-4ebf6cc684d17e01e27d092f11b4198a6b6d340c.tar.bz2
privoxy - put configs in etc
Fixes #3549 Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/privoxy.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/privoxy.rb b/Library/Formula/privoxy.rb
index 233177ced..0b09cb548 100644
--- a/Library/Formula/privoxy.rb
+++ b/Library/Formula/privoxy.rb
@@ -8,7 +8,9 @@ class Privoxy <Formula
def install
system "autoreconf -i"
- system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--sysconfdir=#{etc}/privoxy"
system "make"
system "make install"
end