emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#42021: closed ([PATCH] Fix flatpak configure option)


From: GNU bug Tracking System
Subject: bug#42021: closed ([PATCH] Fix flatpak configure option)
Date: Tue, 23 Jun 2020 21:40:02 +0000

Your message dated Tue, 23 Jun 2020 23:39:06 +0200
with message-id <87wo3xxy11.fsf@gnu.org>
and subject line Re: [bug#42021] [PATCH] Fix flatpak configure option
has caused the debbugs.gnu.org bug report #42021,
regarding [PATCH] Fix flatpak configure option
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
42021: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=42021
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] Fix flatpak configure option Date: Tue, 23 Jun 2020 11:41:26 -0400 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux)
Currently, running an installed flatpak program (e.g. "flatpak run
com.github.micahflee.torbrowser-launcher") results in this error:

"bwrap: execvp xdg-dbus-proxy: No such file or directory"

Setting the full xdg-dbug-proxy path during configuration prevents this
error and allows flatpak programs to be run normally.

>From 401c68d4d1581bc93eb67ff1f4feb21014dc513f Mon Sep 17 00:00:00 2001
From: Robin Templeton <robin@terpri.org>
Date: Tue, 23 Jun 2020 11:17:07 -0400
Subject: [PATCH] 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.
---
 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 2cd7886011..44321240e9 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
-- 
2.26.2




--- End Message ---
--- Begin Message --- Subject: Re: [bug#42021] [PATCH] Fix flatpak configure option Date: Tue, 23 Jun 2020 23:39:06 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux)
Hi Robin,

Robin Templeton <robin@terpri.org> skribis:

>>From 401c68d4d1581bc93eb67ff1f4feb21014dc513f Mon Sep 17 00:00:00 2001
> From: Robin Templeton <robin@terpri.org>
> Date: Tue, 23 Jun 2020 11:17:07 -0400
> Subject: [PATCH] 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.

Good catch, applied!

Ludo’.


--- End Message ---

reply via email to

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