[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/08: gnu: network-manager: Fix build.
From: |
guix-commits |
Subject: |
02/08: gnu: network-manager: Fix build. |
Date: |
Sun, 24 Nov 2024 04:10:20 -0500 (EST) |
lilyp pushed a commit to branch gnome-team
in repository guix.
commit 26a8913d2a56a9afad21c82689c27d9b7947f9f4
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sat Nov 23 18:35:44 2024 +0100
gnu: network-manager: Fix build.
* gnu/packages/gnome.scm (network-manager)[#:phases]<pre-configure>: Also
preconfigure environment variables.
---
gnu/packages/gnome.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 53f0a60481..6575f87715 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -8561,7 +8561,11 @@ users.")
((".*test-link-linux.*") "")
((".*test-lldp.*") "")
((".*test-route-linux.*") "")
- ((".*test-tc-linux.*") ""))))
+ ((".*test-tc-linux.*") ""))
+ (substitute* "src/libnm-client-impl/meson.build"
+ ;; Note: printenv results in bogus newline, that isn't stripped
+ (("run_command\\('printenv', '([^']*)',[^\n]*" all var)
+ (string-append "'" (or (getenv var) "") "'")))))
(add-before 'check 'pre-check
(lambda _
;; For the missing /etc/machine-id.
- branch gnome-team updated (e58724c4e0 -> 5c00ceb3be), guix-commits, 2024/11/24
- 01/08: gnu: blueprint-compiler-0.4: Fix build., guix-commits, 2024/11/24
- 07/08: gnu: fontmanager: Update to 0.9.0., guix-commits, 2024/11/24
- 03/08: gnu: wpewebkit: Add missing input., guix-commits, 2024/11/24
- 04/08: gnu: libgdata: Fix build., guix-commits, 2024/11/24
- 05/08: gnu: gvfs: Patch mount, umount and lsof commands., guix-commits, 2024/11/24
- 08/08: gnu: fontmanager: Use gexps and drop input labels., guix-commits, 2024/11/24
- 06/08: gnu: nautilus: Update to 46.2., guix-commits, 2024/11/24
- 02/08: gnu: network-manager: Fix build.,
guix-commits <=