Clean up rebase problems

My rebase duplicated the depends_on('zlib') and dropped the --with-curl
from the configure.

This fixes those.
This commit is contained in:
George Hartzell 2016-08-03 20:28:54 -04:00
parent f699d7c08e
commit 1de5817b58

View file

@ -55,7 +55,6 @@ class Git(Package):
depends_on("zlib")
depends_on("pcre")
depends_on("perl")
depends_on("zlib")
def install(self, spec, prefix):
configure_args = [
@ -63,6 +62,7 @@ def install(self, spec, prefix):
"--with-libpcre=%s" % spec['pcre'].prefix,
"--with-openssl=%s" % spec['openssl'].prefix,
"--with-zlib=%s" % spec['zlib'].prefix,
"--with-curl=%s" % spec['curl'].prefix,
"--with-expat=%s" % spec['expat'].prefix,
"--with-perl=%s" % join_path(spec['perl'].prefix.bin, 'perl'),
]