diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-10-03 13:12:29 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-10-04 12:09:51 +0200 |
commit | 1ec57f339472f1fcb180f46eba25f2517499155f (patch) | |
tree | 17a43e36a9568ff2f328fdabfb0a78ac89505a7e /shell-completion | |
parent | 08cf5b8dc356309becdb06c43de4d69228089a6a (diff) | |
download | systemd-1ec57f339472f1fcb180f46eba25f2517499155f.tar.gz |
build-sys: s/ENABLE_RESOLVED/ENABLE_RESOLVE/
The configuration option was called -Dresolve, but the internal define
was …RESOLVED. This options governs more than just resolved itself, so
let's settle on the version without "d".
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/bash/meson.build | 2 | ||||
-rw-r--r-- | shell-completion/zsh/meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/shell-completion/bash/meson.build b/shell-completion/bash/meson.build index 1b25e26675..11238781c6 100644 --- a/shell-completion/bash/meson.build +++ b/shell-completion/bash/meson.build @@ -37,7 +37,7 @@ if bashcompletiondir != 'no' ['loginctl', 'ENABLE_LOGIND'], ['machinectl', 'ENABLE_MACHINED'], ['networkctl', 'ENABLE_NETWORKD'], - ['systemd-resolve', 'ENABLE_RESOLVED'], + ['systemd-resolve', 'ENABLE_RESOLVE'], ['timedatectl', 'ENABLE_TIMEDATED'], ] diff --git a/shell-completion/zsh/meson.build b/shell-completion/zsh/meson.build index a3a821e0b1..4e7b33a8a7 100644 --- a/shell-completion/zsh/meson.build +++ b/shell-completion/zsh/meson.build @@ -33,7 +33,7 @@ if zshcompletiondir != 'no' ['_machinectl', 'ENABLE_MACHINED'], ['_networkctl', 'ENABLE_NETWORKD'], ['_systemd-inhibit', 'ENABLE_LOGIND'], - ['_systemd-resolve', 'ENABLE_RESOLVED'], + ['_systemd-resolve', 'ENABLE_RESOLVE'], ['_systemd-tmpfiles', 'ENABLE_TMPFILES'], ['_timedatectl', 'ENABLE_TIMEDATED'], ] |