guix-commits
[Top][All Lists]
Advanced

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

06/07: gnu: qemu: Use 'install-file' instead of 'copy-file'.


From: Ludovic Courtès
Subject: 06/07: gnu: qemu: Use 'install-file' instead of 'copy-file'.
Date: Thu, 26 May 2016 21:59:02 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 8489d79d1b457c1da2ee5e43dda8c85e1bda080d
Author: Ludovic Courtès <address@hidden>
Date:   Thu May 26 23:40:27 2016 +0200

    gnu: qemu: Use 'install-file' instead of 'copy-file'.
    
    * gnu/packages/qemu.scm (qemu)[arguments]: Use 'install-file'.
---
 gnu/packages/qemu.scm |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/gnu/packages/qemu.scm b/gnu/packages/qemu.scm
index dcba279..4108597 100644
--- a/gnu/packages/qemu.scm
+++ b/gnu/packages/qemu.scm
@@ -102,9 +102,7 @@
                         (let ((infodir (string-append out "/share/info")))
                           (mkdir-p infodir)
                           (for-each (lambda (info)
-                                      (copy-file
-                                       info
-                                       (string-append infodir "/" info)))
+                                      (install-file info infodir))
                                     (find-files "." "\\.info$"))
                           #t))))))
          (add-before 'check 'disable-test-qga



reply via email to

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