Skip to content
Snippets Groups Projects
Unverified Commit 2aa51697 authored by Adam J. Stewart's avatar Adam J. Stewart Committed by GitHub
Browse files

Fix configure arg to libassuan (#13350)

parent 598274a2
Branches
Tags
No related merge requests found
...@@ -17,8 +17,9 @@ class Libassuan(AutotoolsPackage): ...@@ -17,8 +17,9 @@ class Libassuan(AutotoolsPackage):
version('2.4.5', sha256='fbfea5d1dbcdee34f2597b0afb3d8bb4eda96c924a1e01b01c2acde68b81625f') version('2.4.5', sha256='fbfea5d1dbcdee34f2597b0afb3d8bb4eda96c924a1e01b01c2acde68b81625f')
version('2.4.3', sha256='22843a3bdb256f59be49842abf24da76700354293a066d82ade8134bb5aa2b71') version('2.4.3', sha256='22843a3bdb256f59be49842abf24da76700354293a066d82ade8134bb5aa2b71')
depends_on('libgpg-error') depends_on('libgpg-error@1.17:')
def configure_args(self): def configure_args(self):
args = ['--with-libgpp-error=%s' % self.spec['libgpg-error'].prefix] return [
return args '--with-libgpg-error-prefix=' + self.spec['libgpg-error'].prefix
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment