mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
hurd-boot: Fix list of devices with translators.
Fixes a regression introduced in450f774028
ande3c6575ee9
, 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:
parent
bae13578f7
commit
69fc67b6bb
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ (define servers
|
|||
("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)
|
||||
|
|
Loading…
Reference in a new issue