diff options
| author | Misty De Meo | 2014-01-04 19:35:34 -0800 |
|---|---|---|
| committer | Misty De Meo | 2014-01-04 19:35:46 -0800 |
| commit | 16bd5c86480e978e8176069ad4a3ff95e6a3ef53 (patch) | |
| tree | 89c104ebc70f622b3e54eeef2fe138b7cd69ad23 /Library/Formula | |
| parent | 6cd5d1e797330314a9786fb0604a32ef3d54bbc8 (diff) | |
| download | homebrew-16bd5c86480e978e8176069ad4a3ff95e6a3ef53.tar.bz2 | |
lighttpd: run autogen.sh to ensure configure works
Fixes #25649.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/lighttpd.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/lighttpd.rb b/Library/Formula/lighttpd.rb index d55384bdd..1f2d53a1d 100644 --- a/Library/Formula/lighttpd.rb +++ b/Library/Formula/lighttpd.rb @@ -10,6 +10,7 @@ class Lighttpd < Formula depends_on 'pkg-config' => :build depends_on 'autoconf' => :build depends_on 'automake' => :build + depends_on 'libtool' => :build depends_on 'pcre' depends_on 'lua' => :optional depends_on 'libev' => :optional @@ -39,6 +40,9 @@ class Lighttpd < Formula # fixed upstream, should be in next release: http://redmine.lighttpd.net/issues/2517 inreplace 'src/Makefile.am', '$(LDAP_LIB)', '$(SSL_LIB) $(LDAP_LIB)' + # autogen must be run, otherwise prebuilt configure may complain + # about a version mismatch between included automake and Homebrew's + system "./autogen.sh" system "./configure", *args system "make install" |
