File: fix-interfaces-path.diff

package info (click to toggle)
libsignon-glib 2.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 504 kB
  • sloc: ansic: 3,844; xml: 311; python: 33; sh: 26; makefile: 7
file content (22 lines) | stat: -rw-r--r-- 1,203 bytes parent folder | download | duplicates (3)
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'