1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 11:02:05 +00:00

use --with-dbus-daemondir= cause DBUS_DAEMONDIR seems to be broken?

dbus-launch no longer reports any errors

svn path=/nixpkgs/trunk/; revision=19919
This commit is contained in:
Marc Weber 2010-02-11 02:43:45 +00:00
parent ef9ef781ea
commit cb9030b947

View file

@ -31,7 +31,9 @@ in rec {
tools = stdenv.mkDerivation {
name = "dbus-tools-" + version;
inherit src configureFlags;
inherit src;
configureFlags = "${configureFlags} --with-dbus-daemondir=${daemon}/bin";
buildInputs = [pkgconfig expat libs]
++ stdenv.lib.optionals useX11 [libX11 libICE libSM];
@ -39,8 +41,6 @@ in rec {
postConfigure = "cd tools";
NIX_LDFLAGS = "-ldbus-1";
makeFlags = "DBUS_DAEMONDIR=${daemon}/bin";
patchPhase =
''