1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-07-02 22:34:06 +02:00

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:
Ludovic Courtès
2016-10-01 11:44:32 +02:00
parent 8e5e8724d2
commit 712b62d8f7
+1 -3
View File
@@ -83,9 +83,7 @@
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin")))
(mkdir-p bin)
(copy-file "make"
(string-append bin "/make"))))))))))
(install-file "make" bin)))))))))
(native-inputs '()) ; no need for 'pkg-config'
(inputs %bootstrap-inputs))))