summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorJan (janneke) Nieuwenhuizen <janneke@gnu.org>2020-06-25 17:07:25 +0200
committerJan (janneke) Nieuwenhuizen <janneke@gnu.org>2020-06-27 12:59:40 +0200
commitdb08a0d2031469f63c8520ce604d2cbf2b4b980b (patch)
tree676ac9dbf566d49edf61071f19000e9e06ac00a3 /gnu
parentd8a046d560e8e149e903b7d3648c7218bf17c085 (diff)
hurd-boot: Remove duplicate calls to 'scope'.
* gnu/build/hurd-boot.scm (set-hurd-device-translators): Remove duplicate calls to 'scope'.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/build/hurd-boot.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/build/hurd-boot.scm b/gnu/build/hurd-boot.scm
index aea2ac3307f..8c4f0ac09bb 100644
--- a/gnu/build/hurd-boot.scm
+++ b/gnu/build/hurd-boot.scm
@@ -232,14 +232,14 @@ set."
232 #o666))) 232 #o666)))
233 233
234 (for-each scope-set-translator servers) 234 (for-each scope-set-translator servers)
235 (mkdir* (scope "dev/vcs/1")) 235 (mkdir* "dev/vcs/1")
236 (mkdir* (scope "dev/vcs/2")) 236 (mkdir* "dev/vcs/2")
237 (mkdir* (scope "dev/vcs/2")) 237 (mkdir* "dev/vcs/2")
238 (rename-file (scope "/dev/console") (scope "/dev/console-")) 238 (rename-file (scope "dev/console") (scope "dev/console-"))
239 (for-each scope-set-translator devices) 239 (for-each scope-set-translator devices)
240 240
241 (false-if-EEXIST (symlink "/dev/random" (scope "dev/urandom"))) 241 (false-if-EEXIST (symlink "/dev/random" (scope "dev/urandom")))
242 (mkdir* (scope "dev/fd")) 242 (mkdir* "dev/fd")
243 (false-if-EEXIST (symlink "/dev/fd/0" (scope "dev/stdin"))) 243 (false-if-EEXIST (symlink "/dev/fd/0" (scope "dev/stdin")))
244 (false-if-EEXIST (symlink "/dev/fd/1" (scope "dev/stdout"))) 244 (false-if-EEXIST (symlink "/dev/fd/1" (scope "dev/stdout")))
245 (false-if-EEXIST (symlink "/dev/fd/2" (scope "dev/stderr")))) 245 (false-if-EEXIST (symlink "/dev/fd/2" (scope "dev/stderr"))))