diff options
author | Mark W. Krentel <krentel@rice.edu> | 2024-05-20 02:44:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-20 01:44:28 -0600 |
commit | c61c707aa5609f92b720d51191f5f700161947bf (patch) | |
tree | 7412c44300569c19213db3536bf5ce5a11728188 /var | |
parent | 60d10848c81cadcdd4c309cf8ad738ad19669dcb (diff) | |
download | spack-c61c707aa5609f92b720d51191f5f700161947bf.tar.gz spack-c61c707aa5609f92b720d51191f5f700161947bf.tar.bz2 spack-c61c707aa5609f92b720d51191f5f700161947bf.tar.xz spack-c61c707aa5609f92b720d51191f5f700161947bf.zip |
hpctoolkit: restrict one patch to :2022 (#44268)
Restrict the hpcrun-fmt.txt patch to :2022. It's fixed in the code
after that, and in recent develop, some code paths have moved causing
this patch to fail.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/hpctoolkit/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/hpctoolkit/package.py b/var/spack/repos/builtin/packages/hpctoolkit/package.py index f57afcbaf8..7f1c2d10ac 100644 --- a/var/spack/repos/builtin/packages/hpctoolkit/package.py +++ b/var/spack/repos/builtin/packages/hpctoolkit/package.py @@ -234,6 +234,7 @@ class Hpctoolkit(AutotoolsPackage, MesonPackage): # Fix a bug where make would mistakenly overwrite hpcrun-fmt.h. # https://gitlab.com/hpctoolkit/hpctoolkit/-/merge_requests/751 + @when("@:2022") def patch(self): with working_dir(join_path("src", "lib", "prof-lean")): if os.access("hpcrun-fmt.txt", os.F_OK): |