distro: acl: Patch references to /bin/sh.
* distro/packages/acl.scm (acl): Add `patch-makefile-SHELL' phase.
This commit is contained in:
parent
2aa4fb5f73
commit
2ea2baf16c
|
@ -41,15 +41,19 @@
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(alist-replace 'check
|
(alist-cons-after
|
||||||
|
'configure 'patch-makefile-SHELL
|
||||||
|
(lambda _
|
||||||
|
(patch-makefile-SHELL "include/buildmacros"))
|
||||||
|
(alist-replace
|
||||||
|
'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(patch-shebang "test/run")
|
|
||||||
(system* "make" "tests" "-C" "test")
|
(system* "make" "tests" "-C" "test")
|
||||||
|
|
||||||
;; XXX: Ignore the test result since this is
|
;; XXX: Ignore the test result since this is
|
||||||
;; dependent on the underlying file system.
|
;; dependent on the underlying file system.
|
||||||
#t)
|
#t)
|
||||||
%standard-phases)))
|
%standard-phases))))
|
||||||
(inputs `(("attr" ,attr)
|
(inputs `(("attr" ,attr)
|
||||||
("gettext" ,guix:gettext)
|
("gettext" ,guix:gettext)
|
||||||
("perl" ,perl)))
|
("perl" ,perl)))
|
||||||
|
|
Loading…
Reference in New Issue