~ruther/guix-local

712b62d8f73f554d646eead198a39cd5e2c772ff — Ludovic Courtès 9 years ago 8e5e872
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.
1 files changed, 1 insertions(+), 3 deletions(-)

M gnu/packages/commencement.scm
M gnu/packages/commencement.scm => gnu/packages/commencement.scm +1 -3
@@ 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))))