This is an automated email from the git hooks/post-receive script.
glv pushed a commit to branch core-updates-frozen
in repository guix.
The following commit(s) were added to refs/heads/core-updates-frozen by this
push:
new e5f21c7 gnu: qpdfview: Fix build.
e5f21c7 is described below
commit e5f21c7e38fc7c61271e532f434284c94cd6fbb3
Author: Josselin Poiret <[email protected]>
AuthorDate: Thu Oct 21 15:03:57 2021 +0200
gnu: qpdfview: Fix build.
* gnu/packages/pdf.scm (qpdfview)[arguments]: Fix 'configure' phase.
Signed-off-by: Guillaume Le Vaillant <[email protected]>
---
gnu/packages/pdf.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index 4ade406..042003e 100644
--- a/gnu/packages/pdf.scm
+++ b/gnu/packages/pdf.scm
@@ -866,9 +866,9 @@ program capable of converting PDF into other formats.")
#:phases
(modify-phases %standard-phases
(replace 'configure
- (lambda _
+ (lambda* (#:key outputs #:allow-other-keys)
(substitute* "qpdfview.pri"
- (("/usr") (assoc-ref %outputs "out")))
+ (("/usr") (assoc-ref outputs "out")))
(invoke "qmake" "qpdfview.pro"))))))
(home-page "https://launchpad.net/qpdfview")
(synopsis "Tabbed document viewer")