From b52f635e411d37b9d0c5f5b26467ca47ebcdfcfe Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 17 May 2021 17:59:09 +0200 Subject: gnu: hdf5: Fix invalid regex range. * gnu/packages/maths.scm (hdf5-1.8)[arguments]: Use [a-zA-Z] instead of [a-Z] as range in regular expression. --- gnu/packages/maths.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 33de445bea..6b3f5cf41c 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1170,7 +1170,7 @@ incompatible with HDF5.") ;; libhdf5.so. We truncate the hashes to avoid ;; unnecessary store references to those compilers: (substitute* "src/libhdf5.settings" - (("(/gnu/store/)([a-Z0-9]*)" all prefix hash) + (("(/gnu/store/)([a-zA-Z0-9]*)" all prefix hash) (string-append prefix (string-take hash 10) "...")) ;; Don't record the build-time kernel version to make the ;; settings file reproducible. -- cgit v1.2.3