gnu: acl: Fix typo.
This is a followup commit to 2d433b5363
,
fixing a typo introduced while rebasing the commit.
gnu/packages/acl.scm (acl)[arguments]: Fix typo in patch-tests phase.
This commit is contained in:
parent
2d433b5363
commit
7183c4bf57
|
@ -53,15 +53,16 @@
|
||||||
(("/bin/sh") (which "sh")))
|
(("/bin/sh") (which "sh")))
|
||||||
#t))
|
#t))
|
||||||
(add-before 'check 'patch-tests
|
(add-before 'check 'patch-tests
|
||||||
;; The coreutils do not have an ACL bit to remove from their
|
(lambda _
|
||||||
;; output, so the sed expression that removes the bit is disabled.
|
;; The coreutils do not have an ACL bit to remove from their
|
||||||
(substitute* "test/sbits-restore.test"
|
;; output, so the sed expression that removes the bit is disabled.
|
||||||
(("\\| sed.*'") ""))
|
(substitute* "test/sbits-restore.test"
|
||||||
;; These tests require the existence of a user named "bin", but
|
(("\\| sed.*'") ""))
|
||||||
;; this user does not exist within Guix's build environment.
|
;; These tests require the existence of a user named "bin", but
|
||||||
(for-each (lambda (file)
|
;; this user does not exist within Guix's build environment.
|
||||||
(delete-file (string-append "test/" file)))
|
(for-each (lambda (file)
|
||||||
'("setfacl-X.test" "cp.test" "misc.test")))
|
(delete-file (string-append "test/" file)))
|
||||||
|
'("setfacl-X.test" "cp.test" "misc.test"))))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "make" "install" "install-lib" "install-dev")))))))
|
(zero? (system* "make" "install" "install-lib" "install-dev")))))))
|
||||||
|
|
Loading…
Reference in New Issue