mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-10 21:29:09 -05:00
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:
parent
9cfc93be30
commit
7549c963c4
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue