Make dbus put a machine id file in the right place.

This commit is contained in:
Todd Gamblin 2015-01-19 14:06:09 -08:00
parent f35b8b8db4
commit 53c8b4249a

View file

@ -23,3 +23,7 @@ def install(self, spec, prefix):
configure("--prefix=%s" % prefix) configure("--prefix=%s" % prefix)
make() make()
make("install") make("install")
# dbus needs a machine id generated after install
dbus_uuidgen = Executable(join_path(prefix.bin, 'dbus-uuidgen'))
dbus_uuidgen('--ensure')