mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: grub-efi: Enable the stack protector.
* gnu/packages/bootloaders.scm (grub-efi)[arguments]: Add "--enable-stack-protector" to #:configure-flags.
This commit is contained in:
parent
2d115ea7ed
commit
018f950941
1 changed files with 3 additions and 1 deletions
|
@ -294,7 +294,9 @@ (define-public grub-efi
|
|||
,@(substitute-keyword-arguments (package-arguments grub)
|
||||
((#:tests? _ #f) #f)
|
||||
((#:configure-flags flags ''())
|
||||
`(cons "--with-platform=efi" ,flags))
|
||||
`(cons* "--with-platform=efi"
|
||||
"--enable-stack-protector" ; EFI-only for now
|
||||
,flags))
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(add-after 'patch-stuff 'use-absolute-efibootmgr-path
|
||||
|
|
Loading…
Reference in a new issue