guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/04: gnu: flatpak: Fix xdg-dbus-proxy configure flag.


From: guix-commits
Subject: 03/04: gnu: flatpak: Fix xdg-dbus-proxy configure flag.
Date: Tue, 23 Jun 2020 18:04:53 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 753d75d40b5205b8c6825a974947b525d3aa7551
Author: Robin Templeton <robin@terpri.org>
AuthorDate: Tue Jun 23 11:17:07 2020 -0400

    gnu: flatpak: Fix xdg-dbus-proxy configure flag.
    
    * gnu/packages/package-management.scm (flatpak) [arguments]: Pass the full
    "xdg-dbus-proxy" program path to the "--with-system-dbus-proxy" configure
    flag.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/package-management.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/package-management.scm 
b/gnu/packages/package-management.scm
index 2cd7886..4432124 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -1152,7 +1152,9 @@ the boot loader configuration.")
        (string-append "--with-system-bubblewrap="
                       (assoc-ref %build-inputs "bubblewrap")
                       "/bin/bwrap")
-       "--with-system-dbus-proxy")
+       (string-append "--with-system-dbus-proxy="
+                      (assoc-ref %build-inputs "xdg-dbus-proxy")
+                      "/bin/xdg-dbus-proxy"))
       #:phases
       (modify-phases %standard-phases
         (add-after 'unpack 'fix-tests



reply via email to

[Prev in Thread] Current Thread [Next in Thread]