mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: acl: Remove labels and trailing #t.
* gnu/packages/acl.scm (acl): Remove labels and trailing #t. Change-Id: I01b3d697da78ae1294b76d1073dbfd0ffe37fe31
This commit is contained in:
parent
f59df1aa3c
commit
5d1a128f64
1 changed files with 4 additions and 9 deletions
|
@ -66,13 +66,11 @@
|
||||||
(ftw "." (lambda (file stat flag)
|
(ftw "." (lambda (file stat flag)
|
||||||
(unless (<= early-1980 (stat:mtime stat))
|
(unless (<= early-1980 (stat:mtime stat))
|
||||||
(utime file early-1980 early-1980))
|
(utime file early-1980 early-1980))
|
||||||
#t))
|
#t)))))
|
||||||
#t)))
|
|
||||||
(add-after 'build 'patch-exec-bin-sh
|
(add-after 'build 'patch-exec-bin-sh
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "test/run"
|
(substitute* "test/run"
|
||||||
(("/bin/sh") (which "sh")))
|
(("/bin/sh") (which "sh")))))
|
||||||
#t))
|
|
||||||
(add-before 'check 'patch-tests
|
(add-before 'check 'patch-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
;; The coreutils do not have an ACL bit to remove from their
|
;; The coreutils do not have an ACL bit to remove from their
|
||||||
|
@ -84,12 +82,9 @@
|
||||||
(substitute* "Makefile.in"
|
(substitute* "Makefile.in"
|
||||||
((".*test/misc\\.test.*") "")
|
((".*test/misc\\.test.*") "")
|
||||||
((".*test/cp\\.test.*") "")
|
((".*test/cp\\.test.*") "")
|
||||||
((".*test/setfacl-X\\.test.*") ""))
|
((".*test/setfacl-X\\.test.*") "")))))))
|
||||||
#t)))))
|
|
||||||
(inputs (list attr))
|
(inputs (list attr))
|
||||||
(native-inputs
|
(native-inputs (list gettext-minimal perl))
|
||||||
`(("gettext" ,gettext-minimal)
|
|
||||||
("perl" ,perl)))
|
|
||||||
(home-page "https://savannah.nongnu.org/projects/acl")
|
(home-page "https://savannah.nongnu.org/projects/acl")
|
||||||
(synopsis
|
(synopsis
|
||||||
"Library and tools for manipulating access control lists")
|
"Library and tools for manipulating access control lists")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue