anitazha / rpms / systemd

Forked from rpms/systemd 3 years ago
Clone

Blame SOURCES/0666-test-functions-fix-dbus-1-installation.patch

Pablo Greco 48fc63
From f22596b2032c31e2014c17bf182737c57cf3b83a Mon Sep 17 00:00:00 2001
Pablo Greco 48fc63
From: Evgeny Vereshchagin <evvers@ya.ru>
Pablo Greco 48fc63
Date: Wed, 4 Nov 2015 18:33:37 +0000
Pablo Greco 48fc63
Subject: [PATCH] test-functions: fix dbus-1 installation
Pablo Greco 48fc63
Pablo Greco 48fc63
The basic setup for the well-known system and session buses is
Pablo Greco 48fc63
now done in read-only files in ${datadir} (normally /usr/share).
Pablo Greco 48fc63
See the NEWS entry for 1.9.18 for details.
Pablo Greco 48fc63
Pablo Greco 48fc63
http://cgit.freedesktop.org/dbus/dbus/tree/NEWS
Pablo Greco 48fc63
Pablo Greco 48fc63
Cherry-picked from: e63b61be5350dbe92ea12e1eeb96dde251ed9292
Pablo Greco 48fc63
---
Pablo Greco 48fc63
 test/test-functions | 2 +-
Pablo Greco 48fc63
 1 file changed, 1 insertion(+), 1 deletion(-)
Pablo Greco 48fc63
Pablo Greco 48fc63
diff --git a/test/test-functions b/test/test-functions
Pablo Greco 48fc63
index cf5612370b..def16d3277 100644
Pablo Greco 48fc63
--- a/test/test-functions
Pablo Greco 48fc63
+++ b/test/test-functions
Pablo Greco 48fc63
@@ -271,7 +271,7 @@ install_dbus() {
Pablo Greco 48fc63
     inst $ROOTLIBDIR/system/dbus.service
Pablo Greco 48fc63
 
Pablo Greco 48fc63
     find \
Pablo Greco 48fc63
-        /etc/dbus-1 -xtype f \
Pablo Greco 48fc63
+        /etc/dbus-1 /usr/share/dbus-1 -xtype f \
Pablo Greco 48fc63
         | while read file; do
Pablo Greco 48fc63
         inst $file
Pablo Greco 48fc63
     done