Merge pull request #142 from mathstuf/dbus-disable-systemd

dbus: disable systemd
This commit is contained in:
Todd Gamblin 2015-10-29 00:07:03 -07:00
commit 58adff307f

View File

@ -20,7 +20,9 @@ class Dbus(Package):
version('1.8.2', 'd6f709bbec0a022a1847c7caec9d6068')
def install(self, spec, prefix):
configure("--prefix=%s" % prefix)
configure(
"--prefix=%s" % prefix,
"--disable-systemd")
make()
make("install")