diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-06-05 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-06-05 02:00:11 +0200 |
commit | f2e570ca8a9349d706828cee9012b75dbd87c257 (patch) | |
tree | 5b9d8e020653037a8cf74a3a645bfce865b4a918 | |
parent | 0648dc95721a6535cf5446fd2f47dc2e6f6823d9 (diff) | |
download | guix-f2e570ca8a9349d706828cee9012b75dbd87c257.tar.gz |
gnu: vtk@7: Simplify regular expression.
* gnu/packages/image-processing.scm (vtk-7)[arguments]: Replace ‘.’ wildcards with literal ‘@’ character matches.
-rw-r--r-- | gnu/packages/image-processing.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/image-processing.scm b/gnu/packages/image-processing.scm index 0c7bae183c..0c25b41dad 100644 --- a/gnu/packages/image-processing.scm +++ b/gnu/packages/image-processing.scm @@ -443,7 +443,7 @@ integrates with various databases on GUI toolkits such as Qt and Tk.") (lambda _ (substitute* "ThirdParty/hdf5/vtkhdf5/config/cmake/libhdf5.settings.cmake.in" - (("Host system: .CMAKE_HOST_SYSTEM.") + (("Host system: \\@CMAKE_HOST_SYSTEM\\@") "Host system: @CMAKE_SYSTEM_NAME@")))))))))) (define-public opencv |