diff options
author | Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com> | 2024-08-05 17:34:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-05 17:34:26 -0700 |
commit | 9a1002c098de80f5668533740b63b769e4972b45 (patch) | |
tree | d00aa570244f1bf8f00c60394d98f2fc7b2fe107 | |
parent | 6c903543e1bb11e73e8effabedff531126a5e3c3 (diff) | |
download | spack-9a1002c098de80f5668533740b63b769e4972b45.tar.gz spack-9a1002c098de80f5668533740b63b769e4972b45.tar.bz2 spack-9a1002c098de80f5668533740b63b769e4972b45.tar.xz spack-9a1002c098de80f5668533740b63b769e4972b45.zip |
tix: skip implicit patch (#45244)
-rw-r--r-- | var/spack/repos/builtin/packages/tix/package.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/tix/package.py b/var/spack/repos/builtin/packages/tix/package.py index de73e2516e..b92541ed07 100644 --- a/var/spack/repos/builtin/packages/tix/package.py +++ b/var/spack/repos/builtin/packages/tix/package.py @@ -31,10 +31,15 @@ class Tix(AutotoolsPackage): sha256="1be1a1c7453f6ab8771f90d7e7c0f8959490104752a16a8755bbb7287a841a96", level=0, ) + # This patch causes 'install' to fail on RHEL8 with at least gcc@10.3.1 with + # "error: expected ')' before '->' token in expansion of macro 'Tcl_Panic'". + # + # TBD: Is the problem the platform, os, or compiler? patch( "https://raw.githubusercontent.com/macports/macports-ports/v2.7.0-archive/x11/tix/files/implicit.patch", sha256="8a2720368c7757896814684147029d8318b9aa3b0914b3f37dd5e8a8603a61d3", level=0, + when="platform=darwin", ) patch( "https://raw.githubusercontent.com/macports/macports-ports/v2.7.0-archive/x11/tix/files/patch-generic-tixGrSort.c.diff", |