diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2018-02-14 09:37:22 +0100 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-02-17 23:48:33 -0500 |
commit | fdd400d82ed83e230331f837aee70e1d504fe58c (patch) | |
tree | 37ac40dd5d6d99793e592355a5393edcbc359b57 /gnu/packages/linux.scm | |
parent | 67f0c4228bf1f5ce211068504cc4454188dd6b55 (diff) | |
download | gnu-guix-fdd400d82ed83e230331f837aee70e1d504fe58c.tar gnu-guix-fdd400d82ed83e230331f837aee70e1d504fe58c.tar.gz |
gnu: make-linux-libre: Use invoke.
* gnu/packages/linux.scm (make-linux-libre): Use invoke.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index aebbfccdbf..90d859d66b 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -336,7 +336,7 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration." (begin (copy-file config ".config") (chmod ".config" #o666)) - (system* "make" ,defconfig)) + (invoke "make" ,defconfig)) ;; Appending works even when the option wasn't in the ;; file. The last one prevails if duplicated. @@ -345,7 +345,7 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration." (display extra-configuration port) (close-port port)) - (zero? (system* "make" "oldconfig"))))) + (invoke "make" "oldconfig")))) (replace 'install (lambda* (#:key inputs native-inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) @@ -360,13 +360,13 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration." (find-files "." "\\.dtb$")) ;; Install kernel modules (mkdir-p moddir) - (zero? (system* "make" - (string-append "DEPMOD=" kmod "/bin/depmod") - (string-append "MODULE_DIR=" moddir) - (string-append "INSTALL_PATH=" out) - (string-append "INSTALL_MOD_PATH=" out) - "INSTALL_MOD_STRIP=1" - "modules_install")))))) + (invoke "make" + (string-append "DEPMOD=" kmod "/bin/depmod") + (string-append "MODULE_DIR=" moddir) + (string-append "INSTALL_PATH=" out) + (string-append "INSTALL_MOD_PATH=" out) + "INSTALL_MOD_STRIP=1" + "modules_install"))))) #:tests? #f)) (home-page "https://www.gnu.org/software/linux-libre/") (synopsis "100% free redistribution of a cleaned Linux kernel") |