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:
George Hartzell 2016-07-26 11:13:39 -04:00
parent 3cf2fd40a8
commit 152fa33a55

View file

@ -59,7 +59,7 @@ class Git(Package):
def install(self, spec, prefix):
configure_args = [
"--prefix=%s" % prefix,
"--without-pcre",
"--with-libpcre=%s" % spec['pcre'].prefix,
"--with-openssl=%s" % spec['openssl'].prefix,
"--with-zlib=%s" % spec['zlib'].prefix,
"--with-expat=%s" % spec['expat'].prefix,