me
/
guix
Archived
1
0
Fork 0

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.
master
Leo Famulari 2017-11-04 13:07:39 -04:00
parent 2d433b5363
commit 7183c4bf57
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 10 additions and 9 deletions

View File

@ -53,15 +53,16 @@
(("/bin/sh") (which "sh")))
#t))
(add-before 'check 'patch-tests
;; The coreutils do not have an ACL bit to remove from their
;; output, so the sed expression that removes the bit is disabled.
(substitute* "test/sbits-restore.test"
(("\\| sed.*'") ""))
;; These tests require the existence of a user named "bin", but
;; this user does not exist within Guix's build environment.
(for-each (lambda (file)
(delete-file (string-append "test/" file)))
'("setfacl-X.test" "cp.test" "misc.test")))
(lambda _
;; The coreutils do not have an ACL bit to remove from their
;; output, so the sed expression that removes the bit is disabled.
(substitute* "test/sbits-restore.test"
(("\\| sed.*'") ""))
;; These tests require the existence of a user named "bin", but
;; this user does not exist within Guix's build environment.
(for-each (lambda (file)
(delete-file (string-append "test/" file)))
'("setfacl-X.test" "cp.test" "misc.test"))))
(replace 'install
(lambda _
(zero? (system* "make" "install" "install-lib" "install-dev")))))))