summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriarspider <iarspider@gmail.com>2021-02-01 15:01:05 +0100
committerGitHub <noreply@github.com>2021-02-01 15:01:05 +0100
commit260706c18693c60eb93a6382049061daedb72099 (patch)
treec0c8b7598feb2c15bc50f4e6c7e6bc247a6c9dad
parentc279983c10cf249d33c1673ab54e48a1f3e35e07 (diff)
downloadspack-260706c18693c60eb93a6382049061daedb72099.tar.gz
spack-260706c18693c60eb93a6382049061daedb72099.tar.bz2
spack-260706c18693c60eb93a6382049061daedb72099.tar.xz
spack-260706c18693c60eb93a6382049061daedb72099.zip
coin3d: depend on gl/glu (virtual packages), not on opengl/openglu (#21419)
-rw-r--r--var/spack/repos/builtin/packages/coin3d/package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/coin3d/package.py b/var/spack/repos/builtin/packages/coin3d/package.py
index 404aad812a..23b6549950 100644
--- a/var/spack/repos/builtin/packages/coin3d/package.py
+++ b/var/spack/repos/builtin/packages/coin3d/package.py
@@ -20,8 +20,8 @@ class Coin3d(AutotoolsPackage):
depends_on('boost@1.45.0:', type='build')
depends_on('doxygen', when='+html', type='build')
depends_on('perl', when='+html', type='build')
- depends_on('openglu', type='link')
- depends_on('opengl', type='link')
+ depends_on('glu', type='link')
+ depends_on('gl', type='link')
depends_on('libsm', type='link')
depends_on('libxext', type='link')
depends_on('libice', type='link')