summaryrefslogtreecommitdiff
path: root/gnu/bootloader/extlinux.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-01-03 12:16:52 +0100
committerLudovic Courtès <ludo@gnu.org>2020-01-03 16:06:26 +0100
commit9512ba6b09b55c1551933c1885aa1ca39457aea8 (patch)
tree10cb2355e9620ec8063ed0256758a427c6b722ba /gnu/bootloader/extlinux.scm
parent10a8fb475b739d7046b7c2e3a81788aa9c652f80 (diff)
downloadguix-patches-9512ba6b09b55c1551933c1885aa1ca39457aea8.tar
guix-patches-9512ba6b09b55c1551933c1885aa1ca39457aea8.tar.gz
bootloader: Mark "grub.cfg" and "extlinux.conf" as non-substitutable.
Suggested by <pkill9@runbox.com>. * gnu/bootloader/grub.scm (grub-configuration-file): Pass #:options to 'computed-file'. * gnu/bootloader/extlinux.scm (extlinux-configuration-file): Likewise.
Diffstat (limited to 'gnu/bootloader/extlinux.scm')
-rw-r--r--gnu/bootloader/extlinux.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/bootloader/extlinux.scm b/gnu/bootloader/extlinux.scm
index 40108584a8..5b4dd84965 100644
--- a/gnu/bootloader/extlinux.scm
+++ b/gnu/bootloader/extlinux.scm
@@ -74,7 +74,9 @@ TIMEOUT ~a~%"
(format port "~%"))
#~())))))
- (computed-file "extlinux.conf" builder))
+ (computed-file "extlinux.conf" builder
+ #:options '(#:local-build? #t
+ #:substitutable? #f)))