summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMichael Kuhn <michael.kuhn@ovgu.de>2023-11-22 11:17:27 +0100
committerGitHub <noreply@github.com>2023-11-22 11:17:27 +0100
commit6ac23545eccef4f4fc99831353f041d2768611a3 (patch)
tree15384add1193bc586c7be230d9566f065d9441bc /var
parent432f5d64e369f8b63cab9ce65ea2e9b9ee5c386d (diff)
downloadspack-6ac23545eccef4f4fc99831353f041d2768611a3.tar.gz
spack-6ac23545eccef4f4fc99831353f041d2768611a3.tar.bz2
spack-6ac23545eccef4f4fc99831353f041d2768611a3.tar.xz
spack-6ac23545eccef4f4fc99831353f041d2768611a3.zip
python: add missing gmake dependency (#41211)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/python/package.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/python/package.py b/var/spack/repos/builtin/packages/python/package.py
index 8253ef0f9a..0f776fa780 100644
--- a/var/spack/repos/builtin/packages/python/package.py
+++ b/var/spack/repos/builtin/packages/python/package.py
@@ -237,6 +237,7 @@ class Python(Package):
variant("crypt", default=True, description="Build crypt module", when="@:3.12 platform=cray")
if sys.platform != "win32":
+ depends_on("gmake", type="build")
depends_on("pkgconfig@0.9.0:", type="build")
depends_on("gettext +libxml2", when="+libxml2")
depends_on("gettext ~libxml2", when="~libxml2")