diff options
| author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-01-25 15:24:08 +0900 |
|---|---|---|
| committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-01-26 00:49:39 +0900 |
| commit | 0e8c8fd1a490a6eec4b80aa7651c789b097d4b4b (patch) | |
| tree | 00953c164465197fe0f70d72fb30505e5f9e94fb /gnu/packages | |
| parent | d1e3c41abdda9f8e9f1283376feb853670393793 (diff) | |
gnu: libblockdev: List unpatched file system plugins/programs.
* gnu/packages/disk.scm (libblockdev) [arguments] <phases>: Output a warning
message for each unpatched program in the patch-plugin-paths phase.
Change-Id: I44fcb1cad339581536f9136147de54ca259719c1
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/disk.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index fd9cb8a45ed..800034624e4 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm | |||
| @@ -1213,7 +1213,11 @@ to create devices with respective mappings for the ATARAID sets discovered.") | |||
| 1213 | (false-if-exception | 1213 | (false-if-exception |
| 1214 | (search-input-file inputs | 1214 | (search-input-file inputs |
| 1215 | (string-append "sbin/" program))) | 1215 | (string-append "sbin/" program))) |
| 1216 | program))))))))) | 1216 | (begin |
| 1217 | (format (current-warning-port) | ||
| 1218 | "warning: program ~s left unpatched~%" | ||
| 1219 | program) | ||
| 1220 | program)))))))))) | ||
| 1217 | (native-inputs | 1221 | (native-inputs |
| 1218 | (list gobject-introspection | 1222 | (list gobject-introspection |
| 1219 | pkg-config | 1223 | pkg-config |
