guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/05: activation: Fix function call for system activation


From: guix-commits
Subject: 01/05: activation: Fix function call for system activation
Date: Tue, 9 Jun 2020 04:44:43 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit ea80cdbcea3763ded87d2fc3b5e97a427a6bb1d4
Author: Royce Strange <royball@disroot.org>
AuthorDate: Mon Jun 8 21:53:30 2020 -0500

    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>
---
 gnu/build/activation.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/build/activation.scm b/gnu/build/activation.scm
index b915e6b..4b67926 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]