dbus: disable systemd

Not necessary in spack. Also forcefully installs outside of the prefix.
This commit is contained in:
Ben Boeckel 2015-10-27 13:51:23 -04:00
parent f76b3890ff
commit b88da83a12

View File

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