bootloader: Emit warnings with 'warning'.
* gnu/bootloader.scm (bootloader-configuration-target): Use 'warning' instead of 'issue-deprecation-warning'.
This commit is contained in:
parent
15d61488a6
commit
9e1fe3d0c3
|
@ -132,9 +132,9 @@
|
|||
(or (%bootloader-configuration-target config)
|
||||
(let ((device (bootloader-configuration-device config)))
|
||||
(when device
|
||||
(issue-deprecation-warning
|
||||
"The 'device' field of bootloader configurations is deprecated."
|
||||
"Use 'target' instead."))
|
||||
(warning
|
||||
(G_ "The 'device' field of bootloader configurations is deprecated.~%"))
|
||||
(warning (G_ "Use 'target' instead.~%")))
|
||||
device)))
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue