aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorRenaud (Nel) Morvan2009-10-04 20:58:15 +0200
committerRenaud (Nel) Morvan2009-10-04 20:58:15 +0200
commit4118358b16ed452d857ae1d58ccdba2141447fa2 (patch)
tree7b3f94b2a7d582a84d683f827449c56bd959e67c /Library/Formula
parent2ba49484a90a79aa42412dbadb25e24ca1534b1f (diff)
downloadhomebrew-4118358b16ed452d857ae1d58ccdba2141447fa2.tar.bz2
fix siege formula
Keg etc folder must exist for the build to succeed
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/siege.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/siege.rb b/Library/Formula/siege.rb
index 95cfa8984..cb0153170 100644
--- a/Library/Formula/siege.rb
+++ b/Library/Formula/siege.rb
@@ -6,8 +6,8 @@ class Siege <Formula
sha1 'f0514eefe4e024ee059b09ab50903bbced79f3b9'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--with-ssl"
- system "make"
+ etc.mkpath
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--sysconfdir=#{etc}", "--with-ssl"
system "make install"
end