summaryrefslogtreecommitdiff
path: root/cmake/tools
diff options
context:
space:
mode:
authorRalf Habacker <ralf.habacker@freenet.de>2014-08-08 22:02:08 +0200
committerRalf Habacker <ralf.habacker@freenet.de>2014-09-15 13:33:23 +0200
commit6864780bd6db9c46bcdd4653871a7d328eb200bf (patch)
treec6632c1f9e499807e595ad457754df5f37f9a33e /cmake/tools
parent87448fed6f37ab0f036d88ac0d4af2e1bfc59a69 (diff)
downloaddbus-6864780bd6db9c46bcdd4653871a7d328eb200bf.tar.gz
Fix installation of empty directories for cmake build system.
The differences has been found out by comparing with the cross compiled mingw..-dbus packages. [exclude system bus support bits on Windows -smcv] Bug: https://bugs.freedesktop.org/show_bug.cgi?id=83583 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'cmake/tools')
-rw-r--r--cmake/tools/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmake/tools/CMakeLists.txt b/cmake/tools/CMakeLists.txt
index ddbd5bcf..9f363b7a 100644
--- a/cmake/tools/CMakeLists.txt
+++ b/cmake/tools/CMakeLists.txt
@@ -45,3 +45,6 @@ install_targets(/bin dbus-launch )
add_executable(dbus-monitor ${dbus_monitor_SOURCES})
target_link_libraries(dbus-monitor ${DBUS_LIBRARIES})
install_targets(/bin dbus-monitor )
+
+# create the /var/lib/dbus directory for dbus-uuidgen
+install(DIRECTORY DESTINATION var/lib/dbus)