[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: netcdf: Fix build.
From: |
guix-commits |
Subject: |
02/03: gnu: netcdf: Fix build. |
Date: |
Fri, 20 Aug 2021 08:12:08 -0400 (EDT) |
glv pushed a commit to branch core-updates-frozen
in repository guix.
commit 361d4627ab8d0bea1e4bc07b13961ad34e8cd7e4
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Fri Aug 20 13:54:35 2021 +0200
gnu: netcdf: Fix build.
* gnu/packages/maths.scm (netcdf)[arguments]: Fix regexp in 'patch-settings'
phase.
---
gnu/packages/maths.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 82ca9ca..472f537 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1697,7 +1697,7 @@ similar to MATLAB, GNU Octave or SciPy.")
;; filenames to avoid unnecessary references to the corresponding
;; store items.
(substitute* "libnetcdf.settings"
- (("(/gnu/store/)([a-Z0-9]*)" all prefix hash)
+ (("(/gnu/store/)([0-9A-Za-z]*)" all prefix hash)
(string-append prefix (string-take hash 10) "...")))
#t)))