From 2b1e5cb6a82e60298b620ef8d2dbf90cfb925015 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 22 Jan 2023 19:47:22 -0500 Subject: [PATCH] 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 @@ (define-public diffoscope (("\\[\"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.