diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-01-19 14:06:09 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-01-19 14:06:09 -0800 |
commit | 53c8b4249ad5b875678ebe6d784fbc5493aef160 (patch) | |
tree | dd4afdf85c7d97ffc3f96b10d3d6652fdafe1bf7 /var | |
parent | f35b8b8db42332a93168e3f8a707442186359a6c (diff) | |
download | spack-53c8b4249ad5b875678ebe6d784fbc5493aef160.tar.gz spack-53c8b4249ad5b875678ebe6d784fbc5493aef160.tar.bz2 spack-53c8b4249ad5b875678ebe6d784fbc5493aef160.tar.xz spack-53c8b4249ad5b875678ebe6d784fbc5493aef160.zip |
Make dbus put a machine id file in the right place.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/packages/dbus/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/packages/dbus/package.py b/var/spack/packages/dbus/package.py index 5fee103f03..f7f394498c 100644 --- a/var/spack/packages/dbus/package.py +++ b/var/spack/packages/dbus/package.py @@ -23,3 +23,7 @@ class Dbus(Package): configure("--prefix=%s" % prefix) make() make("install") + + # dbus needs a machine id generated after install + dbus_uuidgen = Executable(join_path(prefix.bin, 'dbus-uuidgen')) + dbus_uuidgen('--ensure') |