distro: acl: Patch references to /bin/sh.

* distro/packages/acl.scm (acl): Add `patch-makefile-SHELL' phase.
This commit is contained in:
Ludovic Courtès 2013-01-02 21:21:40 +01:00
parent 2aa4fb5f73
commit 2ea2baf16c
1 changed files with 12 additions and 8 deletions

View File

@ -41,15 +41,19 @@
(build-system gnu-build-system)
(arguments
`(#:phases
(alist-replace 'check
(lambda _
(patch-shebang "test/run")
(system* "make" "tests" "-C" "test")
(alist-cons-after
'configure 'patch-makefile-SHELL
(lambda _
(patch-makefile-SHELL "include/buildmacros"))
(alist-replace
'check
(lambda _
(system* "make" "tests" "-C" "test")
;; XXX: Ignore the test result since this is
;; dependent on the underlying file system.
#t)
%standard-phases)))
;; XXX: Ignore the test result since this is
;; dependent on the underlying file system.
#t)
%standard-phases))))
(inputs `(("attr" ,attr)
("gettext" ,guix:gettext)
("perl" ,perl)))