diff options
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/bioinformatics.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm index 02c979d..5ccd5b5 100644 --- a/gn/packages/bioinformatics.scm +++ b/gn/packages/bioinformatics.scm @@ -2506,8 +2506,8 @@ in-memory footprint at the cost of packing and unpacking.") (substitute* "Makefile" ((".*test-docs.*") ""))))) (add-after 'build 'build-manpages - (lambda* (#:key inputs #:allow-other-keys) - (invoke "make" "man"))) + (lambda* (#:key make-flags #:allow-other-keys) + (apply invoke "make" "man" make-flags))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) |