File fix-nonce-tcp-3.patch of Package dbus-1.25333
From 1b14a4c801b7101b3cc725ae9ea86af380c4cc6a Mon Sep 17 00:00:00 2001
From: Simon McVittie <simon.mcvittie@collabora.co.uk>
Date: Wed, 15 Feb 2017 16:55:53 +0000
Subject: [PATCH 3/4] test: Delete directories like directories, not files
Directories can't usefully appear in CLEANFILES, we have to delete
them recursively in clean-local.
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
---
test/Makefile.am | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
Index: dbus-1.8.22/test/Makefile.am
===================================================================
--- dbus-1.8.22.orig/test/Makefile.am
+++ dbus-1.8.22/test/Makefile.am
@@ -369,6 +369,7 @@ clean-local:
else \
rm -f $(static_data); \
fi
+ rm -fr ./XDG_RUNTIME_DIR ./installable
imported_data = \
data/valid-config-files/session.conf \
@@ -376,7 +377,7 @@ imported_data = \
$(NULL)
noinst_DATA = $(imported_data)
-CLEANFILES = $(noinst_DATA) XDG_RUNTIME_DIR
+CLEANFILES = $(noinst_DATA)
$(imported_data): data/valid-config-files/%.conf: $(top_builddir)/bus/%.conf
$(AM_V_at)$(MKDIR_P) data/valid-config-files