From 3f4ee0104d3599422f4f0038be8a0981485d7245 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sun, 6 Nov 2022 10:02:47 +0100 Subject: gnu: r-minimal: Avoid referencing /gnu/store/[^-]+-glibc-[^-]+-static. As this causes the following error when computing a cross-compilation derivation for r-minimal and related packages. I think this is coming from the string appearing in the sources section of the derivation, but not being a valid store path. * gnu/packages/statistics.scm (r-minimal)[arguments]: Split string involving /gnu/store. --- gnu/packages/statistics.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 2d4dbe4a31..43988ad00e 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -470,7 +470,11 @@ available, greatly increasing its breadth and scope.") "util-macros" "graphite2")) "|" - "/gnu/store/[^-]+-glibc-[^-]+-static" + ;; Be careful when including store paths in the + ;; build script, since they might be treated as + ;; references + "/gnu/store" + "/[^-]+-glibc-[^-]+-static" ")/lib")) "")))))))))))) (define-public rmath-standalone -- cgit v1.2.3