squashfs should depend_on('zlib') (#11265)
Add zlib dependency to squashfs On my CentOS system it was getting linked in (from Spack, no less) fortuitously. On a minimal Ubuntu system it failed until it was added as an explicit dependency.
This commit is contained in:
parent
edca0cde1c
commit
b0080c705c
@ -22,6 +22,7 @@ class Squashfs(MakefilePackage):
|
|||||||
depends_on('autoconf', type='build')
|
depends_on('autoconf', type='build')
|
||||||
depends_on('automake', type='build')
|
depends_on('automake', type='build')
|
||||||
depends_on('libtool', type='build')
|
depends_on('libtool', type='build')
|
||||||
|
depends_on('zlib')
|
||||||
|
|
||||||
def build(self, spec, prefix):
|
def build(self, spec, prefix):
|
||||||
with working_dir('squashfs-tools'):
|
with working_dir('squashfs-tools'):
|
||||||
|
Loading…
Reference in New Issue
Block a user