Call configure --with-libpcre=... to use our pcre
An earlier commit claimed that this package depends_on('pcre') but I
didn't fix the call to configure that enabled it.
This fixes that.
This commit is contained in:
@@ -59,7 +59,7 @@ class Git(Package):
|
|||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
configure_args = [
|
configure_args = [
|
||||||
"--prefix=%s" % prefix,
|
"--prefix=%s" % prefix,
|
||||||
"--without-pcre",
|
"--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-expat=%s" % spec['expat'].prefix,
|
"--with-expat=%s" % spec['expat'].prefix,
|
||||||
|
|||||||
Reference in New Issue
Block a user