gnu: ocaml4.07-piqi: Fix reference to inputs and output.
The package 'lablgtk@2.8.10' (indirect dependency of ocaml4.07-piqi) fails to build so this patch could not be tested. * gnu/packages/ocaml.scm (ocaml4.07-piqi)[arguments]<#:make-flags>: Use #$output. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
4001657811
commit
8717b34cd4
1 changed files with 4 additions and 3 deletions
|
@ -3704,9 +3704,10 @@ and 4 (random based) according to RFC 4122.")
|
|||
(build-system ocaml-build-system)
|
||||
(arguments
|
||||
`(#:make-flags
|
||||
(list (string-append "DESTDIR=" (assoc-ref %outputs "out"))
|
||||
(string-append "SHELL=" (assoc-ref %build-inputs "bash")
|
||||
"/bin/sh"))
|
||||
,#~(list (string-append "DESTDIR=" #$output)
|
||||
(string-append "SHELL="
|
||||
#+(file-append (canonical-package bash-minimal)
|
||||
"/bin/sh")))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'make-files-writable
|
||||
|
|
Reference in a new issue