diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-01-17 05:32:29 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-01-25 12:32:18 +0100 |
commit | 3cc6b14a87f813bfdda36fe3ca0e65888cffd0b2 (patch) | |
tree | 33df75d21e3e49513e186e976d884c032cdcf5e0 /meson.build | |
parent | selinux-util: do not use log_internal_realm() without setting log realm (diff) | |
download | systemd-3cc6b14a87f813bfdda36fe3ca0e65888cffd0b2.tar.xz systemd-3cc6b14a87f813bfdda36fe3ca0e65888cffd0b2.zip |
udev: stop to use LOG_REALM_UDEV
Before this commit, udevd is built with LOG_REALM=LOG_REALM_UDEV.
However, log level specified by e.g. environment variable or kernel
command line option are also passed to LOG_REALM_SYSTEMD. So, the
maximum log level for the two realms are always equivalent, and it is
not necessary to specify the build option. Hence drop it.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 9b47e6ad03..6d18355b0c 100644 --- a/meson.build +++ b/meson.build @@ -3161,7 +3161,6 @@ public_programs += executable( public_programs += executable( 'udevadm', udevadm_sources, - c_args : '-DLOG_REALM=LOG_REALM_UDEV', include_directories : includes, link_with : [libudevd_core], dependencies : [versiondep, |