From a1f34ec58b60cddeb1f0e97df820a6665603127b Mon Sep 17 00:00:00 2001 From: wspear Date: Fri, 3 May 2024 20:15:40 -0700 Subject: [PATCH] Add a gmake dependency for TAU (#43870) We discovered a case where the system gmake can get confused by spack's build environment. Let's use a spack-provided gmake for consistent builds. --- var/spack/repos/builtin/packages/tau/package.py | 1 + 1 file changed, 1 insertion(+) diff --git a/var/spack/repos/builtin/packages/tau/package.py b/var/spack/repos/builtin/packages/tau/package.py index 81f48e5bd4..1e7f02ae31 100644 --- a/var/spack/repos/builtin/packages/tau/package.py +++ b/var/spack/repos/builtin/packages/tau/package.py @@ -114,6 +114,7 @@ class Tau(Package): description="Do not add -no-pie while linking with Ubuntu.", ) + depends_on("gmake", type="build") depends_on("cmake@3.14:", type="build", when="%clang") depends_on("cmake@3.14:", type="build", when="%aocc") depends_on("zlib-api", type="link")