From d043ceedbb3ce1873db97cfe2c8806de64881f01 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sat, 25 Feb 2017 21:22:08 -0500 Subject: gnu: cups-minimal: Fix build failure in reset-gzip-timestamps phase. * gnu/packages/cups.scm (cups-minimal)[arguments]: Add 'make-manpages-writable' phase. --- gnu/packages/cups.scm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gnu/packages/cups.scm') diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index 20621e32b7..2649cd3469 100644 --- a/gnu/packages/cups.scm +++ b/gnu/packages/cups.scm @@ -166,6 +166,14 @@ filters for the PDF-centric printing workflow introduced by OpenPrinting.") (substitute* "Makedefs.in" (("INITDIR.*=.*@INITDIR@") "INITDIR = @prefix@/@INITDIR@") (("/bin/sh") (which "sh"))))) + ;; Make the compressed manpages writable so that the + ;; reset-gzip-timestamps phase does not error out. + (add-before 'reset-gzip-timestamps 'make-manpages-writable + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (man (string-append out "/share/man"))) + (for-each (lambda (file) (chmod file #o644)) + (find-files man "\\.gz"))))) (add-before 'build 'patch-tests (lambda _ (substitute* "test/ippserver.c" -- cgit v1.2.3