diff options
author | Royce Strange <royball@disroot.org> | 2020-06-08 21:53:30 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-06-09 10:43:54 +0200 |
commit | ea80cdbcea3763ded87d2fc3b5e97a427a6bb1d4 (patch) | |
tree | f56fce894d88626627b801c62c5cac863b09303a /gnu/build | |
parent | 5f7c4416b5afb95ece26bdb1d000e026387d002f (diff) | |
download | guix-ea80cdbcea3763ded87d2fc3b5e97a427a6bb1d4.tar.gz |
activation: Fix function call for system activation
* gnu/build/activation.scm (boot-time-system): Evaluate the linux-command-line thunk for linux systems to boot Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/build')
-rw-r--r-- | gnu/build/activation.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/build/activation.scm b/gnu/build/activation.scm index b915e6bb67..4b67926e88 100644 --- a/gnu/build/activation.scm +++ b/gnu/build/activation.scm @@ -321,7 +321,7 @@ improvement." (define (boot-time-system) "Return the '--system' argument passed on the kernel command line." (find-long-option "--system" (if (string-contains %host-type "linux-gnu") - linux-command-line + (linux-command-line) (command-line)))) (define* (activate-current-system |