diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-12-23 21:17:46 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-12-23 21:17:46 +0100 |
commit | 7549c963c4fe295bc12839b39d5e6e8cac755940 (patch) | |
tree | 154ffba0a1d2dcd204e1c6a530e20d948b1107f3 /guix | |
parent | 9cfc93be30c516fd6fa32915c61c06e03f23a011 (diff) |
guix: Quote list of bootstrap scripts.
This is a follow-up to commit 9cfc93be30c516fd6fa32915c61c06e03f23a011.
* guix/build-system/gnu.scm (gnu-build, gnu-cross-build): Quote the list of
default bootstrap scripts.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/build-system/gnu.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/build-system/gnu.scm b/guix/build-system/gnu.scm index 2fed7736a1..abff7d6998 100644 --- a/guix/build-system/gnu.scm +++ b/guix/build-system/gnu.scm @@ -332,7 +332,7 @@ standard packages used as implicit inputs of the GNU build system." #:key (guile #f) (outputs '("out")) (search-paths '()) - (bootstrap-scripts %bootstrap-scripts) + (bootstrap-scripts (list 'quote %bootstrap-scripts)) (configure-flags ''()) (make-flags ''()) (out-of-source? #f) @@ -492,7 +492,7 @@ is one of `host' or `target'." (search-paths '()) (native-search-paths '()) - (bootstrap-scripts %bootstrap-scripts) + (bootstrap-scripts (list 'quote %bootstrap-scripts)) (configure-flags ''()) (make-flags ''()) (out-of-source? #f) |