diff options
| author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-11-23 18:35:44 +0100 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-03-02 20:31:36 +0100 |
| commit | 48e3c26ec0cf6672d700e4e4d2e7510dba7794fd (patch) | |
| tree | e0670c780238f00f320463f559d53b7937ce5bb3 /gnu/packages | |
| parent | e51ff9c2ac7e9f465ea09661d75326172a82e2f5 (diff) | |
gnu: network-manager: Fix build.
* gnu/packages/gnome.scm (network-manager)[#:phases]<pre-configure>: Also
preconfigure environment variables.
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/gnome.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 6622edc4474..7285313ebbf 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -8566,7 +8566,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. |
