From 552ca46e7b33ea9567e98cd9cf69a74b263872e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 5 Jan 2026 16:53:09 +0100 Subject: [PATCH] gnu: openpmix: Simplify. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/parallel.scm (openpmix)[source]: Use ‘modules’ field and adjust ‘snippet’ accordingly. [arguments]: Remove now-useless configure flag. Change-Id: I2ec33232021485a019a8f86818e2f540963d4338 Signed-off-by: Ludovic Courtès --- gnu/packages/parallel.scm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/gnu/packages/parallel.scm b/gnu/packages/parallel.scm index 028c06cf80e..6858ad41552 100644 --- a/gnu/packages/parallel.scm +++ b/gnu/packages/parallel.scm @@ -729,17 +729,15 @@ single-instruction multiple-data (SIMD) intrinsics.") (sha256 (base32 "062k2agr311j06pavmrim1savmcv4f3c5jir4w1jxs0cdnb6ksdz")) + (modules '((guix build utils))) (snippet - '(begin (use-modules (guix build utils)) - ;; Remove ~5 MiB of pre-built HTML doc. - (delete-file-recursively "docs/_build/html"))))) + ;; Remove ~5 MiB of pre-built HTML doc. + #~(delete-file-recursively "docs/_build/html")))) (build-system gnu-build-system) (arguments (list #:configure-flags - #~(list (string-append "--with-hwloc=" - (ungexp (this-package-input "hwloc") "lib")) - "--enable-python-bindings") ;disabled by default + #~(list "--enable-python-bindings") ;disabled by default ;; Don't keep a reference to GCC. #:disallowed-references (and (not (%current-target-system))