glv pushed a commit to branch core-updates-frozen
in repository guix.
commit aa916f343cb8381172713b74362fede304664396
Author: Guillaume Le Vaillant <[email protected]>
AuthorDate: Mon Oct 4 17:08:18 2021 +0200
gnu: git-lfs: Fix build.
* gnu/packages/version-control.scm (git-lfs)[arguments]: Fix
'install-man-pages' phase.
---
gnu/packages/version-control.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index f2ea8dd..61e188a 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -40,6 +40,7 @@
;;; Copyright © 2021 Xinglu Chen <[email protected]>
;;; Copyright © 2021 François J. <[email protected]>
;;; Copyright © 2021 Julien Lepiller <[email protected]>
+;;; Copyright © 2021 Guillaume Le Vaillant <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2876,9 +2877,9 @@ interrupted, published, and collaborated on while in
progress.")
(invoke "make" "man"))
#t))
(add-after 'install 'install-man-pages
- (lambda _
+ (lambda* (#:key outputs #:allow-other-keys)
(with-directory-excursion "src/github.com/git-lfs/git-lfs/man"
- (let ((out (assoc-ref %outputs "out")))
+ (let ((out (assoc-ref outputs "out")))
(for-each
(lambda (manpage)
(install-file manpage (string-append out
"/share/man/man1")))