guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/04: gnu: make-boot0: Use 'install-file'.


From: Ludovic Courtès
Subject: 03/04: gnu: make-boot0: Use 'install-file'.
Date: Sat, 1 Oct 2016 10:15:57 +0000 (UTC)

civodul pushed a commit to branch core-updates
in repository guix.

commit 712b62d8f73f554d646eead198a39cd5e2c772ff
Author: Ludovic Courtès <address@hidden>
Date:   Sat Oct 1 11:44:32 2016 +0200

    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.
---
 gnu/packages/commencement.scm |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 976b0ac..265b709 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -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))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]