diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-03-31 09:55:53 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-03-31 09:55:53 -0700 |
commit | 2441068d5417804f90b4d6033d44d0298af1471c (patch) | |
tree | 25c03cbbf1bce619553e5343d79a2ef1ce1b27d6 | |
parent | 0840ffa3ddbc58ae729cfe6f8d71707d5090460f (diff) | |
parent | a88c15e1010ccadd2f81de9edac48b140d70f9f1 (diff) | |
download | spack-2441068d5417804f90b4d6033d44d0298af1471c.tar.gz spack-2441068d5417804f90b4d6033d44d0298af1471c.tar.bz2 spack-2441068d5417804f90b4d6033d44d0298af1471c.tar.xz spack-2441068d5417804f90b4d6033d44d0298af1471c.zip |
Merge pull request #697 from KineticTheory/pkg-libdrm
+ libdrm depends_on libpciaccess. Use spack provided libpciaccess.
-rw-r--r-- | var/spack/repos/builtin/packages/libdrm/package.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/libdrm/package.py b/var/spack/repos/builtin/packages/libdrm/package.py index 00736b7811..d5d779f796 100644 --- a/var/spack/repos/builtin/packages/libdrm/package.py +++ b/var/spack/repos/builtin/packages/libdrm/package.py @@ -2,7 +2,7 @@ from spack import * class Libdrm(Package): """A userspace library for accessing the DRM, direct - rendering manager, on Linux, BSD and other operating + rendering manager, on Linux, BSD and other operating systems that support the ioctl interface.""" homepage = "http://dri.freedesktop.org/libdrm/" # no real website... @@ -11,6 +11,8 @@ class Libdrm(Package): version('2.4.59', '105ac7af1afcd742d402ca7b4eb168b6') version('2.4.33', '86e4e3debe7087d5404461e0032231c8') + depends_on('libpciaccess') + def install(self, spec, prefix): configure("--prefix=%s" % prefix) |