mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
12 lines
406 B
Diff
12 lines
406 B
Diff
the assert expects a working /var/log/wtmp at build time
|
|
--- a/meson.build
|
|
+++ a/meson.build
|
|
@@ -101,7 +101,6 @@
|
|
|
|
config_h.set('PATH_WTMP', '_PATH_WTMPX')
|
|
else
|
|
- path_wtmp = '/var/log/utx.log'
|
|
- assert(run_command('test', '-e', path_wtmp).returncode() == 0, 'Do not know which filename to watch for wtmp changes')
|
|
+ path_wtmp = '/var/log/wtmp'
|
|
config_h.set_quoted('PATH_WTMP', path_wtmp)
|
|
endif
|