guix-commits
[Top][All Lists]
Advanced

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

08/09: gnu: cbqn: Install regular files rather than copying them recursi


From: guix-commits
Subject: 08/09: gnu: cbqn: Install regular files rather than copying them recursively.
Date: Mon, 7 Nov 2022 16:02:23 -0500 (EST)

lilyp pushed a commit to branch master
in repository guix.

commit a75a5ac4fc49b563503f7fe165fdade2c4448e9f
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sat Oct 22 21:01:12 2022 +0200

    gnu: cbqn: Install regular files rather than copying them recursively.
    
    * gnu/packages/bqn.scm (cbqn)[#:phases]<install>: Use ‘install-file’ rather
    than ‘copy-recursively’ for “bqn”.
---
 gnu/packages/bqn.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/bqn.scm b/gnu/packages/bqn.scm
index 5029bebe8b..ed10990561 100644
--- a/gnu/packages/bqn.scm
+++ b/gnu/packages/bqn.scm
@@ -198,8 +198,8 @@ by APL.")
                        (lib (string-append (assoc-ref outputs "lib")
                                            "/lib")))
                   (mkdir-p bin)
-                  (copy-recursively "BQN"
-                                    (string-append bin "/bqn"))
+                  (rename-file "BQN" "bqn")
+                  (install-file "bqn" bin)
                   (install-file "libcbqn.so" lib))))))))
     (native-inputs (list dbqn
                          bqn-sources



reply via email to

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