diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2019-08-18 14:14:18 +0200 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2019-09-04 17:56:13 +0200 |
commit | 328a4c5bf1bc6f99515b18900811f724631bf91c (patch) | |
tree | 17fe2576e61bbeb1fa44984cc62f8e6372a5aa05 /gnu/system | |
parent | 5ee1c0459eebdd3b7771abaeab0f0b52ff86fdd5 (diff) | |
download | patches-328a4c5bf1bc6f99515b18900811f724631bf91c.tar patches-328a4c5bf1bc6f99515b18900811f724631bf91c.tar.gz |
linux-initrd: Use native gzip.
* gnu/system/linux-initrd.scm (expression->initrd): Pass native gzip to
build-initrd procedure.
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/linux-initrd.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm index 7e9563b923..0efb8fb222 100644 --- a/gnu/system/linux-initrd.scm +++ b/gnu/system/linux-initrd.scm @@ -99,7 +99,7 @@ the derivations referenced by EXP are automatically copied to the initrd." #:init #$init ;; Copy everything INIT refers to into the initrd. #:references-graphs '("closure") - #:gzip (string-append #$gzip "/bin/gzip"))))) + #:gzip (string-append #+gzip "/bin/gzip"))))) (file-append (computed-file name builder #:options |