GNU bug report logs -
#42021
[PATCH] Fix flatpak configure option
Previous Next
Reported by: Robin Templeton <robin <at> terpri.org>
Date: Tue, 23 Jun 2020 15:42:01 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#42021: [PATCH] Fix flatpak configure option
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 42021 <at> debbugs.gnu.org.
--
42021: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=42021
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Hi Robin,
Robin Templeton <robin <at> terpri.org> skribis:
>>From 401c68d4d1581bc93eb67ff1f4feb21014dc513f Mon Sep 17 00:00:00 2001
> From: Robin Templeton <robin <at> 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’.
[Message part 3 (message/rfc822, inline)]
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 <at> 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
This bug report was last modified 4 years and 333 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.