1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00
Files
guix/gnu/packages/patches/rochpl-supported-distros.patch
Ludovic Courtès 5591ac7772 gnu: Add rocHPL.
Based on earlier work by AMD in <https://gitlab.inria.fr/guix-hpc/guix-hpc>.

* gnu/packages/rocm-apps.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/patches/rochpl-supported-distros.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.

Merges guix/guix!7251

Change-Id: I1542a423faa854f5dfcb8965c4ffa3ab1e17098d
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
2026-03-24 14:21:48 +01:00

28 lines
839 B
Diff

Do not bail out when not running on a "supported distro": it will usually work
fine on Guix System.
diff --git a/scripts/mpirun_rochpl.in b/scripts/mpirun_rochpl.in
index 968e5a2..685a69e 100755
--- a/scripts/mpirun_rochpl.in
+++ b/scripts/mpirun_rochpl.in
@@ -50,7 +50,6 @@ supported_distro( )
true
;;
*) printf "This script is currently supported on Debian, Linuxmint, Ubuntu, CentOS, RHEL, Fedora and SLES\n"
- exit 2
;;
esac
}
diff --git a/scripts/run_rochpl.in b/scripts/run_rochpl.in
index e30c8bb..890cfe1 100755
--- a/scripts/run_rochpl.in
+++ b/scripts/run_rochpl.in
@@ -50,7 +50,6 @@ supported_distro( )
true
;;
*) printf "This script is currently supported on Debian, Linuxmint, Ubuntu, CentOS, RHEL, Fedora and SLES\n"
- exit 2
;;
esac
}