diff options
author | David Craven <david@craven.ch> | 2016-09-13 22:41:43 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-09-13 22:48:00 +0200 |
commit | 0b759869832817312c40bb0a6e45cc3114b9580b (patch) | |
tree | 566e1ff8bf615987b9a7e3cfe81e8fc4111c0ef2 /gnu | |
parent | 995e5092d82569e06a9d7203f637816cc6894930 (diff) | |
download | patches-0b759869832817312c40bb0a6e45cc3114b9580b.tar patches-0b759869832817312c40bb0a6e45cc3114b9580b.tar.gz |
gnu: make-linux-libre: Only use configuration-file when one is provided.
* gnu/packages/linux.scm (make-linux-libre): Only use configuration-file
when one is provided.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 981ac60dd5..8c1cbeaa65 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -236,14 +236,13 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration." ("bc" ,bc) ("openssl" ,openssl) ("kmod" ,kmod) - ,@(let ((conf (configuration-file - (system->linux-architecture - (or (%current-target-system) - (%current-system))) - #:variant (version-major+minor version)))) - (if conf - `(("kconfig" ,conf)) - '())))) + ,@(if configuration-file + `(("kconfig" ,(configuration-file + (system->linux-architecture + (or (%current-target-system) + (%current-system))) + #:variant (version-major+minor version)))) + '()))) (arguments `(#:modules ((guix build gnu-build-system) (guix build utils) |