From f4bfeb7ed8e1f35e49ccf0f5dd4a21b60cbe5b11 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Sat, 14 Dec 2024 07:38:01 -0600 Subject: [PATCH] sundials: fix missing comma in list (#48106) --- var/spack/repos/builtin/packages/sundials/package.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/var/spack/repos/builtin/packages/sundials/package.py b/var/spack/repos/builtin/packages/sundials/package.py index 8f025724306..5fae1e481b8 100644 --- a/var/spack/repos/builtin/packages/sundials/package.py +++ b/var/spack/repos/builtin/packages/sundials/package.py @@ -648,7 +648,8 @@ def filter_compilers(self): cxx_files = [ "arkode/CXX_parallel/Makefile", - "arkode/CXX_serial/Makefile" "cvode/cuda/Makefile", + "arkode/CXX_serial/Makefile", + "cvode/cuda/Makefile", "cvode/raja/Makefile", "nvector/cuda/Makefile", "nvector/raja/Makefile", -- GitLab