diff options
| -rw-r--r-- | Library/Formula/pdns.rb | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/pdns.rb b/Library/Formula/pdns.rb index d2e92d85e..c2ee00681 100644 --- a/Library/Formula/pdns.rb +++ b/Library/Formula/pdns.rb @@ -1,7 +1,8 @@  require 'formula'  class Pdns < Formula -  homepage 'http://wiki.powerdns.com' +  homepage 'http://www.powerdns.com' +  head 'https://github.com/powerdns/pdns.git'    url 'http://downloads.powerdns.com/releases/pdns-3.3.1.tar.gz'    sha1 '555862bf9635d1dcab2c4f3b7569bdd8212ef67f' @@ -27,6 +28,7 @@ class Pdns < Formula        args << "--with-modules=gsqlite3"      end +    system "./bootstrap" if build.head?      system "./configure", *args      # Compilation fails at polarssl if we skip straight to make install  | 
