diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2017-08-25 21:33:44 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2017-08-28 09:56:33 +0200 |
| commit | 9e1fe3d0c34e65a50ba93b5d7f7398503131c1ba (patch) | |
| tree | 92208c2150eced57e2440035cc3e40e61a74b38b /gnu/bootloader.scm | |
| parent | 15d61488a645cef8c7fcba2f78305a850ac83015 (diff) | |
bootloader: Emit warnings with 'warning'.
* gnu/bootloader.scm (bootloader-configuration-target): Use 'warning'
instead of 'issue-deprecation-warning'.
Diffstat (limited to 'gnu/bootloader.scm')
| -rw-r--r-- | gnu/bootloader.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/bootloader.scm b/gnu/bootloader.scm index 122e3508746..736f1195273 100644 --- a/gnu/bootloader.scm +++ b/gnu/bootloader.scm | |||
| @@ -132,9 +132,9 @@ | |||
| 132 | (or (%bootloader-configuration-target config) | 132 | (or (%bootloader-configuration-target config) |
| 133 | (let ((device (bootloader-configuration-device config))) | 133 | (let ((device (bootloader-configuration-device config))) |
| 134 | (when device | 134 | (when device |
| 135 | (issue-deprecation-warning | 135 | (warning |
| 136 | "The 'device' field of bootloader configurations is deprecated." | 136 | (G_ "The 'device' field of bootloader configurations is deprecated.~%")) |
| 137 | "Use 'target' instead.")) | 137 | (warning (G_ "Use 'target' instead.~%"))) |
| 138 | device))) | 138 | device))) |
| 139 | 139 | ||
| 140 | 140 | ||
