[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/04: gnu: diffoscope: Simplify the build-man-page phase.
From: |
guix-commits |
Subject: |
04/04: gnu: diffoscope: Simplify the build-man-page phase. |
Date: |
Sun, 22 Jan 2023 20:06:03 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit 2b1e5cb6a82e60298b620ef8d2dbf90cfb925015
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sun Jan 22 19:47:22 2023 -0500
gnu: diffoscope: Simplify the build-man-page phase.
* gnu/packages/diffoscope.scm (diffoscope) [phases]: Remove MAKE-FLAGS
binding
in the build-man-page phase, as the python-build-system has no such
argument.
---
gnu/packages/diffoscope.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/diffoscope.scm b/gnu/packages/diffoscope.scm
index f2f296b954..cb8e9e01b9 100644
--- a/gnu/packages/diffoscope.scm
+++ b/gnu/packages/diffoscope.scm
@@ -113,8 +113,8 @@
(("\\[\"getfacl\",")
(string-append "[\"" (which "getfacl") "\",")))))
(add-after 'build 'build-man-page
- (lambda* (#:key (make-flags '()) #:allow-other-keys)
- (apply invoke "make" "-C" "doc" make-flags)))
+ (lambda _
+ (invoke "make" "-C" "doc")))
(add-before 'check 'writable-test-data
(lambda _
;; Tests may need write access to tests directory.