diff options
author | Juan Miguel Carceller <22276694+jmcarcell@users.noreply.github.com> | 2023-05-29 10:36:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-29 10:36:57 +0200 |
commit | 27c8135207d27015181c3b093e5bd37146e801b1 (patch) | |
tree | 7ca7c11f1118f9683627e3ec7c915396650dcaa6 | |
parent | 77ce4701b9304e7acccec37eaaff4301ea6ffbc3 (diff) | |
download | spack-27c8135207d27015181c3b093e5bd37146e801b1.tar.gz spack-27c8135207d27015181c3b093e5bd37146e801b1.tar.bz2 spack-27c8135207d27015181c3b093e5bd37146e801b1.tar.xz spack-27c8135207d27015181c3b093e5bd37146e801b1.zip |
xrootd: add patch for when libraries are installed in lib64 (#37858)
Co-authored-by: jmcarcell <jmcarcell@users.noreply.github.com>
-rw-r--r-- | var/spack/repos/builtin/packages/xrootd/package.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/xrootd/package.py b/var/spack/repos/builtin/packages/xrootd/package.py index 716cb0e9b8..03c6bad67f 100644 --- a/var/spack/repos/builtin/packages/xrootd/package.py +++ b/var/spack/repos/builtin/packages/xrootd/package.py @@ -136,6 +136,12 @@ class Xrootd(CMakePackage): sha256="969f8b07edff42449ad76b02f3e57d93b8d6c829be1ba14bccf831c27bc971e1", when="@5.5.3", ) + # https://github.com/xrootd/xrootd/pull/2013 + patch( + "https://patch-diff.githubusercontent.com/raw/xrootd/xrootd/pull/2013.patch?full_index=1", + sha256="3596f45234c421abb00d0d0539033207596587f00b2d35897da8ba3302811bba", + when="@5.5.0:5.5.5", + ) # do not use systemd patch("no-systemd-pre-5.5.2.patch", when="@:5.5.1") |