diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-12-24 00:12:19 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-12-24 00:45:47 +0100 |
commit | 69fc67b6bbd84bae2dfda1dcfc667946a368298a (patch) | |
tree | a28cb1585b73a1c6f6cca04c81313eb163218b18 | |
parent | bae13578f7b03735c1cfcd1addb31a05fa413c44 (diff) |
hurd-boot: Fix list of devices with translators.
Fixes a regression introduced in
450f7740283ce160a7482d1c75e6e0ab17f2a6f0 and
e3c6575ee93741a43003cd1aa4663151dd90b9f5, which introduced
unquote-splicing without changing quote to quasiquote.
* gnu/build/hurd-boot.scm (set-hurd-device-translators)[devices]: Use
quasiquote, note quote.
-rw-r--r-- | gnu/build/hurd-boot.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/build/hurd-boot.scm b/gnu/build/hurd-boot.scm index e068ffc202..abcf0304c2 100644 --- a/gnu/build/hurd-boot.scm +++ b/gnu/build/hurd-boot.scm @@ -194,7 +194,7 @@ set." ("proc" ("/hurd/procfs" "--stat-mode=444")))) (define devices - '(("dev/full" ("/hurd/null" "--full") #o666) + `(("dev/full" ("/hurd/null" "--full") #o666) ("dev/null" ("/hurd/null") #o666) ("dev/random" ("/hurd/random" "--seed-file" "/var/lib/random-seed") #o644) |