asdcplib: Added PATH of openssl installed by spack to configure_args. (#19243)
This commit is contained in:
parent
160c00e3f7
commit
cd800c20d3
@ -21,3 +21,12 @@ class Asdcplib(AutotoolsPackage):
|
||||
depends_on('autoconf', type='build')
|
||||
depends_on('automake', type='build')
|
||||
depends_on('libtool', type='build')
|
||||
depends_on('openssl', type=('build', 'link'))
|
||||
|
||||
def configure_args(self):
|
||||
|
||||
spec = self.spec
|
||||
|
||||
args = ['--with-openssl={0}'.format(spec['openssl'].prefix)]
|
||||
|
||||
return args
|
||||
|
Loading…
Reference in New Issue
Block a user