guix: Quote list of bootstrap scripts.

This is a follow-up to commit 9cfc93be30.

* guix/build-system/gnu.scm (gnu-build, gnu-cross-build): Quote the list of
default bootstrap scripts.
This commit is contained in:
Ricardo Wurmus 2020-12-23 21:17:46 +01:00
parent 9cfc93be30
commit 7549c963c4
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -332,7 +332,7 @@ (define* (gnu-build store name input-drvs
#:key (guile #f) #:key (guile #f)
(outputs '("out")) (outputs '("out"))
(search-paths '()) (search-paths '())
(bootstrap-scripts %bootstrap-scripts) (bootstrap-scripts (list 'quote %bootstrap-scripts))
(configure-flags ''()) (configure-flags ''())
(make-flags ''()) (make-flags ''())
(out-of-source? #f) (out-of-source? #f)
@ -492,7 +492,7 @@ (define* (gnu-cross-build store name
(search-paths '()) (search-paths '())
(native-search-paths '()) (native-search-paths '())
(bootstrap-scripts %bootstrap-scripts) (bootstrap-scripts (list 'quote %bootstrap-scripts))
(configure-flags ''()) (configure-flags ''())
(make-flags ''()) (make-flags ''())
(out-of-source? #f) (out-of-source? #f)