diff options
author | George Hartzell <hartzell@alerce.com> | 2016-07-26 11:13:39 -0400 |
---|---|---|
committer | George Hartzell <hartzell@alerce.com> | 2016-08-06 16:28:47 -0400 |
commit | 152fa33a55550db66f35885dc3da1a38250a1606 (patch) | |
tree | 229afed8464484f5ecc4dad7dcdb72c1da9b0823 /var | |
parent | 3cf2fd40a8dd1abede6962317418b33385082f93 (diff) | |
download | spack-152fa33a55550db66f35885dc3da1a38250a1606.tar.gz spack-152fa33a55550db66f35885dc3da1a38250a1606.tar.bz2 spack-152fa33a55550db66f35885dc3da1a38250a1606.tar.xz spack-152fa33a55550db66f35885dc3da1a38250a1606.zip |
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.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/git/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/git/package.py b/var/spack/repos/builtin/packages/git/package.py index 12b9470434..9570f3f824 100644 --- a/var/spack/repos/builtin/packages/git/package.py +++ b/var/spack/repos/builtin/packages/git/package.py @@ -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, |