1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-08-10 17:01:29 +02:00

hurd-boot: Fix list of devices with translators.

Fixes a regression introduced in
450f774028 and
e3c6575ee9, which introduced
unquote-splicing without changing quote to quasiquote.

* gnu/build/hurd-boot.scm (set-hurd-device-translators)[devices]: Use
quasiquote, note quote.
This commit is contained in:
Ludovic Courtès
2022-12-24 00:12:19 +01:00
parent bae13578f7
commit 69fc67b6bb
+1 -1
View File
@@ -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)