guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: buildroot-boards: Install support scripts.


From: guix-commits
Subject: 01/01: gnu: buildroot-boards: Install support scripts.
Date: Mon, 2 Sep 2019 21:09:45 -0400 (EDT)

dannym pushed a commit to branch wip-buildroot
in repository guix.

commit 5bdd10bdfcff13c627ff49fb594b83d2c3bd304f
Author: Danny Milosavljevic <address@hidden>
Date:   Tue Sep 3 03:08:34 2019 +0200

    gnu: buildroot-boards: Install support scripts.
    
    * gnu/packages/buildroot.scm 
(buildroot-boards)[arguments]<#:phases>[install]:
    Install support scripts.
---
 gnu/packages/buildroot.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/buildroot.scm b/gnu/packages/buildroot.scm
index 84c1381..710aba5 100644
--- a/gnu/packages/buildroot.scm
+++ b/gnu/packages/buildroot.scm
@@ -58,9 +58,10 @@
          (delete 'check)
          (replace 'install
            (lambda* (#:key outputs #:allow-other-keys)
-             (let ((destination (string-append (assoc-ref outputs "out")
-                                               "/share/buildroot/board")))
-               (copy-recursively "board" destination))
+             (let ((out-share (string-append (assoc-ref outputs "out")
+                                             "/share/buildroot/")))
+               (copy-recursively "board" (string-append out-share "board"))
+               (copy-recursively "support" (string-append out-share 
"support")))
              #t)))))
     (synopsis "Generate embedded Linux system images")
     (description "@code{buildroot} generates embedded Linux system images.")



reply via email to

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