1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Author: Pino Toscano <pino@debian.org>
Description: Fix path to the D-Bus interfaces files
Use the in-sources copies, instead of what is in the 'interfaces' git
submodule.
Forwarded: no
Last-Update: 2020-12-31
--- a/libsignon-glib/meson.build
+++ b/libsignon-glib/meson.build
@@ -31,9 +31,9 @@ libsignon_glib_sources = libsignon_glib_
sso_interface_prefix = 'com.google.code.AccountsSSO.SingleSignOn.'
-dbus_auth_service_xml = join_paths('interfaces', 'com.google.code.AccountsSSO.SingleSignOn.AuthService.xml')
-dbus_auth_session_xml = join_paths('interfaces', 'com.google.code.AccountsSSO.SingleSignOn.AuthSession.xml')
-dbus_identity_xml = join_paths('interfaces', 'com.google.code.AccountsSSO.SingleSignOn.Identity.xml')
+dbus_auth_service_xml = 'com.google.code.AccountsSSO.SingleSignOn.AuthService.xml'
+dbus_auth_session_xml = 'com.google.code.AccountsSSO.SingleSignOn.AuthSession.xml'
+dbus_identity_xml = 'com.google.code.AccountsSSO.SingleSignOn.Identity.xml'
if (meson.version().version_compare('<0.47.2'))
dbus_auth_service_xml = 'com.google.code.AccountsSSO.SingleSignOn.AuthService.xml'
dbus_auth_session_xml = 'com.google.code.AccountsSSO.SingleSignOn.AuthSession.xml'
|