gnu: make-boot0: Use 'install-file'.
* gnu/packages/commencement.scm (gnu-make-boot0)[arguments]: Use 'install-file' in 'install' phase instead of 'copy-file' etc.
This commit is contained in:
parent
8e5e8724d2
commit
712b62d8f7
|
@ -83,9 +83,7 @@
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(bin (string-append out "/bin")))
|
(bin (string-append out "/bin")))
|
||||||
(mkdir-p bin)
|
(install-file "make" bin)))))))))
|
||||||
(copy-file "make"
|
|
||||||
(string-append bin "/make"))))))))))
|
|
||||||
(native-inputs '()) ; no need for 'pkg-config'
|
(native-inputs '()) ; no need for 'pkg-config'
|
||||||
(inputs %bootstrap-inputs))))
|
(inputs %bootstrap-inputs))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue