meson: Do not warn about xdg-email on macOS
There is no such thing from Freedesktop for macOS. What we use (at packaging phase) is an AppleScript by Alex Samorukov at build/macos/patches/xdg-email. So, makes no sense having that warning on macOS since such custom script does not exist anywhere to be found at build-time.
This commit is contained in:
parent
2012a9afc9
commit
424f090100
1 changed files with 1 additions and 1 deletions
|
|
@ -1161,7 +1161,7 @@ else
|
|||
if xdg_email.found()
|
||||
xdg_email_path = xdg_email.full_path()
|
||||
email_message = '@0@ (@1@)'.format(true, xdg_email_path)
|
||||
elif not xdg_email.found() and not platform_windows
|
||||
elif not xdg_email.found() and not platform_windows and not platform_osx
|
||||
mail_warning = 'Xdg-email not found, but required at runtime for email sending.'
|
||||
warning(mail_warning)
|
||||
warnings += mail_warning
|
||||
|
|
|
|||
Loading…
Reference in a new issue