[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: qview: Fix regexp.
From: |
guix-commits |
Subject: |
branch master updated: gnu: qview: Fix regexp. |
Date: |
Tue, 03 Nov 2020 02:22:02 -0500 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 7a9e68c gnu: qview: Fix regexp.
7a9e68c is described below
commit 7a9e68cc8750a9b378ae54a42d3e882a2e548c95
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Nov 3 08:21:27 2020 +0100
gnu: qview: Fix regexp.
* gnu/packages/image-viewers.scm (qview): Fix regexps.
---
gnu/packages/image-viewers.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm
index b376f8a..1efec0a 100644
--- a/gnu/packages/image-viewers.scm
+++ b/gnu/packages/image-viewers.scm
@@ -518,8 +518,8 @@ For PDF support, install the @emph{mupdf} package.")
(add-before 'build 'disable-auto-update
(lambda _
(substitute* "src/qvaboutdialog.cpp"
- (("qvApp->checkUpdates();") "")
- (("updateText();") ""))
+ (("qvApp->checkUpdates\\(\\);") "")
+ (("updateText\\(\\);") ""))
#t)))))
(inputs
`(("qtbase" ,qtbase)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: qview: Fix regexp.,
guix-commits <=