guix-commits
[Top][All Lists]
Advanced

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

01/295: hurd-boot: Remove duplicate calls to 'scope'.


From: guix-commits
Subject: 01/295: hurd-boot: Remove duplicate calls to 'scope'.
Date: Mon, 27 Jul 2020 06:24:58 -0400 (EDT)

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

commit db08a0d2031469f63c8520ce604d2cbf2b4b980b
Author: Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Thu Jun 25 17:07:25 2020 +0200

    hurd-boot: Remove duplicate calls to 'scope'.
    
    * gnu/build/hurd-boot.scm (set-hurd-device-translators): Remove duplicate
    calls to 'scope'.
---
 gnu/build/hurd-boot.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/build/hurd-boot.scm b/gnu/build/hurd-boot.scm
index aea2ac3..8c4f0ac 100644
--- a/gnu/build/hurd-boot.scm
+++ b/gnu/build/hurd-boot.scm
@@ -232,14 +232,14 @@ set."
                                                             #o666)))
 
   (for-each scope-set-translator servers)
-  (mkdir* (scope "dev/vcs/1"))
-  (mkdir* (scope "dev/vcs/2"))
-  (mkdir* (scope "dev/vcs/2"))
-  (rename-file (scope "/dev/console") (scope "/dev/console-"))
+  (mkdir* "dev/vcs/1")
+  (mkdir* "dev/vcs/2")
+  (mkdir* "dev/vcs/2")
+  (rename-file (scope "dev/console") (scope "dev/console-"))
   (for-each scope-set-translator devices)
 
   (false-if-EEXIST (symlink "/dev/random" (scope "dev/urandom")))
-  (mkdir* (scope "dev/fd"))
+  (mkdir* "dev/fd")
   (false-if-EEXIST (symlink "/dev/fd/0" (scope "dev/stdin")))
   (false-if-EEXIST (symlink "/dev/fd/1" (scope "dev/stdout")))
   (false-if-EEXIST (symlink "/dev/fd/2" (scope "dev/stderr"))))



reply via email to

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