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:
parent
3cf2fd40a8
commit
152fa33a55
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue