summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2015-11-23 16:08:35 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2015-11-23 16:08:35 -0800
commit583b8e3ade5f52aa21d1ff7fa83ca3c93075488d (patch)
tree36a7993d1ddb010089fd07b3188fe8549ed77725 /var
parentb5fffc71c94f3d1b8c3ea8673506349c32b35f1c (diff)
parentb6d368d7a05551cdd3470ee495293ff7e4f894ba (diff)
downloadspack-583b8e3ade5f52aa21d1ff7fa83ca3c93075488d.tar.gz
spack-583b8e3ade5f52aa21d1ff7fa83ca3c93075488d.tar.bz2
spack-583b8e3ade5f52aa21d1ff7fa83ca3c93075488d.tar.xz
spack-583b8e3ade5f52aa21d1ff7fa83ca3c93075488d.zip
Merge pull request #187 from mathstuf/dbus-osx-disable-launchd
dbus: disable launchd support
Diffstat (limited to 'var')
-rw-r--r--var/spack/packages/dbus/package.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/packages/dbus/package.py b/var/spack/packages/dbus/package.py
index f7c302d611..294b0de54e 100644
--- a/var/spack/packages/dbus/package.py
+++ b/var/spack/packages/dbus/package.py
@@ -22,7 +22,8 @@ class Dbus(Package):
def install(self, spec, prefix):
configure(
"--prefix=%s" % prefix,
- "--disable-systemd")
+ "--disable-systemd",
+ "--disable-launchd")
make()
make("install")