Bug fix for ca-certificates-mozilla/package.py
to enable spack install --source
(#32953)
This commit is contained in:
parent
abbdf24083
commit
8af1802bd9
1 changed files with 2 additions and 1 deletions
|
@ -121,5 +121,6 @@ def setup_dependent_package(self, module, dep_spec):
|
||||||
# Install the the pem file as share/cacert.pem
|
# Install the the pem file as share/cacert.pem
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
share = join_path(prefix, "share")
|
share = join_path(prefix, "share")
|
||||||
mkdir(share)
|
# https://github.com/spack/spack/issues/32948
|
||||||
|
mkdirp(share)
|
||||||
install("cacert-{0}.pem".format(spec.version), join_path(share, "cacert.pem"))
|
install("cacert-{0}.pem".format(spec.version), join_path(share, "cacert.pem"))
|
||||||
|
|
Loading…
Reference in a new issue