summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAndrew W Elble <aweits@rit.edu>2024-07-31 10:48:21 -0400
committerGitHub <noreply@github.com>2024-07-31 10:48:21 -0400
commitc30c5df340284508b31ac45977e7d825d6dd9b23 (patch)
treec7dc27cb6791e95c2e67e9d684c2df349c9e46fe /var
parent4a088f717ecdb049f436658c3981bcb950e9d803 (diff)
downloadspack-c30c5df340284508b31ac45977e7d825d6dd9b23.tar.gz
spack-c30c5df340284508b31ac45977e7d825d6dd9b23.tar.bz2
spack-c30c5df340284508b31ac45977e7d825d6dd9b23.tar.xz
spack-c30c5df340284508b31ac45977e7d825d6dd9b23.zip
libxcb: xcb-proto is a build dependency (#45523)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/libxcb/package.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/libxcb/package.py b/var/spack/repos/builtin/packages/libxcb/package.py
index bc22cc2028..fefdebd20c 100644
--- a/var/spack/repos/builtin/packages/libxcb/package.py
+++ b/var/spack/repos/builtin/packages/libxcb/package.py
@@ -38,12 +38,12 @@ class Libxcb(AutotoolsPackage, XorgPackage):
depends_on("libxdmcp")
# libxcb 1.X requires xcb-proto >= 1.X
- depends_on("xcb-proto")
- depends_on("xcb-proto@1.17:", when="@1.17")
- depends_on("xcb-proto@1.16:", when="@1.16")
- depends_on("xcb-proto@1.15:", when="@1.15")
- depends_on("xcb-proto@1.14:", when="@1.14")
- depends_on("xcb-proto@1.13:", when="@1.13")
+ depends_on("xcb-proto", type="build")
+ depends_on("xcb-proto@1.17:", when="@1.17", type="build")
+ depends_on("xcb-proto@1.16:", when="@1.16", type="build")
+ depends_on("xcb-proto@1.15:", when="@1.15", type="build")
+ depends_on("xcb-proto@1.14:", when="@1.14", type="build")
+ depends_on("xcb-proto@1.13:", when="@1.13", type="build")
depends_on("python", type="build")
depends_on("pkgconfig", type="build")