From b88da83a121fd9fa1a29494d3c15e4c7848fc14e Mon Sep 17 00:00:00 2001
From: Ben Boeckel <ben.boeckel@kitware.com>
Date: Tue, 27 Oct 2015 13:51:23 -0400
Subject: [PATCH] dbus: disable systemd

Not necessary in spack. Also forcefully installs outside of the prefix.
---
 var/spack/packages/dbus/package.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/var/spack/packages/dbus/package.py b/var/spack/packages/dbus/package.py
index f7f394498c..f7c302d611 100644
--- a/var/spack/packages/dbus/package.py
+++ b/var/spack/packages/dbus/package.py
@@ -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")
 
-- 
GitLab