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:
@@ -55,7 +55,6 @@ class Git(Package):
|
|||||||
depends_on("zlib")
|
depends_on("zlib")
|
||||||
depends_on("pcre")
|
depends_on("pcre")
|
||||||
depends_on("perl")
|
depends_on("perl")
|
||||||
depends_on("zlib")
|
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
configure_args = [
|
configure_args = [
|
||||||
@@ -63,6 +62,7 @@ def install(self, spec, prefix):
|
|||||||
"--with-libpcre=%s" % spec['pcre'].prefix,
|
"--with-libpcre=%s" % spec['pcre'].prefix,
|
||||||
"--with-openssl=%s" % spec['openssl'].prefix,
|
"--with-openssl=%s" % spec['openssl'].prefix,
|
||||||
"--with-zlib=%s" % spec['zlib'].prefix,
|
"--with-zlib=%s" % spec['zlib'].prefix,
|
||||||
|
"--with-curl=%s" % spec['curl'].prefix,
|
||||||
"--with-expat=%s" % spec['expat'].prefix,
|
"--with-expat=%s" % spec['expat'].prefix,
|
||||||
"--with-perl=%s" % join_path(spec['perl'].prefix.bin, 'perl'),
|
"--with-perl=%s" % join_path(spec['perl'].prefix.bin, 'perl'),
|
||||||
]
|
]
|
||||||
|
Reference in New Issue
Block a user