diff options
| author | Andy Tai <ltai@roku.com> | 2026-02-05 13:14:20 -0800 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-10 22:36:13 +0100 |
| commit | adacb69e894ba674793ed3025d55b8e6eff95f9d (patch) | |
| tree | 8b65fcd93c42ebfdf7274f98bd93f0316053e3e5 | |
| parent | d03de3625963cf97cf7cffd6c3b427c172a19085 (diff) | |
gnu: xpra, xpra-5: Fix build.
* gnu/packages/xorg.scm (xpra)[arguments]<#:phases>{fix-paths}:
Check target file existence.
Change-Id: I1d4ec75f8d1932fd6de204b7f9c726ddca588d09
Signed-off-by: Andreas Enge <andreas@enge.fr>
| -rw-r--r-- | gnu/packages/xorg.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 2dd0340065a..61a1672eeb7 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -6615,9 +6615,9 @@ basic eye-candy effects.") #$(this-package-input "xf86-input-mouse") "/lib/xorg/modules," #$(this-package-input "xorg-server") "/lib/xorg/modules\"\n" "EndSection\n\n")) - (substitute* '("xpra/scripts/config.py" + (substitute* (filter file-exists? '("xpra/scripts/config.py" "fs/etc/xpra/conf.d/60_server.conf.in" - "tests/unittests/unit/server/subsystem/notification_test.py") + "tests/unittests/unit/server/subsystem/notification_test.py")) ;; The trailing -- is intentional, so we only replace it inside ;; a command line. (("dbus-launch --") |
