mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: docbook-xml: Fix permissions.
* gnu/packages/docbook.scm (docbook-xml-5) [arguments]: Remove unnecessary executable permissions. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
f8d169e393
commit
a29754b4f1
1 changed files with 7 additions and 0 deletions
|
@ -62,8 +62,15 @@ (define-public docbook-xml-5
|
|||
(build-system copy-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:modules '((guix build copy-build-system)
|
||||
(guix build utils)
|
||||
(srfi srfi-26))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-permissions
|
||||
(lambda _
|
||||
;; XXX: These files do not need 0755 permission.
|
||||
(for-each (cut chmod <> #o644) (find-files "."))))
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(let ((dtd-path (string-append #$output "/xml/dtd/docbook")))
|
||||
|
|
Loading…
Reference in a new issue