diff options
author | Silva Alejandro Ismael <silva.alejandro.ismael@gmail.com> | 2019-06-17 11:35:54 -0300 |
---|---|---|
committer | Silva Alejandro Ismael <silva.alejandro.ismael@gmail.com> | 2019-06-17 11:35:54 -0300 |
commit | 9eb974aaaf64d7bd374cdda612d85ea26a264326 (patch) | |
tree | e0830de2016ca928d935b50763bc97ba5f36b10c /remoting | |
parent | 8d23ab78bdbca420c63125648a483a65851970b1 (diff) |
build: Fix hint to disable remoting
If a dependency is missing, the error message should tell the build option to disable it.
Show the correct build option in the error message of the remoting plugin.
Signed-off-by: Silva Alejandro Ismael <silva.alejandro.ismael@gmail.com>
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/meson.build b/remoting/meson.build index 703ecdbb..0054e050 100644 --- a/remoting/meson.build +++ b/remoting/meson.build @@ -1,5 +1,5 @@ if get_option('remoting') - user_hint = 'If you rather not build this, set "remoting=false".' + user_hint = 'If you rather not build this, set \'-Dremoting=false\'.' if not get_option('backend-drm') error('Attempting to build the remoting plugin without the required DRM backend. ' + user_hint) |