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.
This commit is contained in:
parent
6ee590eca8
commit
b52f635e41
1 changed files with 1 additions and 1 deletions
|
@ -1170,7 +1170,7 @@ (define-public hdf5-1.8
|
|||
;; 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.
|
||||
|
|
Loading…
Reference in a new issue