diff options
author | Denis Davydov <davydden@gmail.com> | 2016-06-23 08:45:20 +0200 |
---|---|---|
committer | Denis Davydov <davydden@gmail.com> | 2016-08-02 13:49:40 +0200 |
commit | a4e59c27586190543b847f5a4005a4b471ecd087 (patch) | |
tree | 4bddd8bf5921f5e53b04b817bb2ffa6acefe5ba0 | |
parent | bb5dd49206e98f066d211b6a0f5a408b209ef2aa (diff) | |
download | spack-a4e59c27586190543b847f5a4005a4b471ecd087.tar.gz spack-a4e59c27586190543b847f5a4005a4b471ecd087.tar.bz2 spack-a4e59c27586190543b847f5a4005a4b471ecd087.tar.xz spack-a4e59c27586190543b847f5a4005a4b471ecd087.zip |
libxau: add missing dependency
-rw-r--r-- | var/spack/repos/builtin/packages/libxau/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/libxau/package.py b/var/spack/repos/builtin/packages/libxau/package.py index 55816ecdbd..d6d3421f1d 100644 --- a/var/spack/repos/builtin/packages/libxau/package.py +++ b/var/spack/repos/builtin/packages/libxau/package.py @@ -24,6 +24,7 @@ ############################################################################## from spack import * + class Libxau(Package): """The libXau package contains a library implementing the X11 Authorization Protocol. This is useful for restricting client @@ -34,11 +35,10 @@ class Libxau(Package): version('1.0.8', '685f8abbffa6d145c0f930f00703b21b') depends_on('xproto') + depends_on('pkg-config') def install(self, spec, prefix): - # FIXME: Modify the configure line to suit your build system here. configure('--prefix=%s' % prefix) - # FIXME: Add logic to build and install here make() make("install") |