guix-commits
[Top][All Lists]
Advanced

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

05/07: gnu: synergy: Fix build failure.


From: guix-commits
Subject: 05/07: gnu: synergy: Fix build failure.
Date: Fri, 3 Apr 2020 12:29:02 -0400 (EDT)

mbakke pushed a commit to branch core-updates
in repository guix.

commit ba66eec741a9fbddd74eb7fc54d2c53888ace5b7
Author: Marius Bakke <address@hidden>
AuthorDate: Fri Apr 3 18:04:38 2020 +0200

    gnu: synergy: Fix build failure.
    
    * gnu/packages/synergy.scm (synergy)[arguments]: Prepend to 
CPLUS_INCLUDE_PATH
    instead of overriding it.
---
 gnu/packages/synergy.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/synergy.scm b/gnu/packages/synergy.scm
index 367bb32..739ea3b 100644
--- a/gnu/packages/synergy.scm
+++ b/gnu/packages/synergy.scm
@@ -63,7 +63,8 @@
            (lambda* (#:key inputs #:allow-other-keys)
              (setenv "CPLUS_INCLUDE_PATH"
                      (string-append (assoc-ref inputs "avahi")
-                                    "/include/avahi-compat-libdns_sd"))
+                                    "/include/avahi-compat-libdns_sd:"
+                                    (or (getenv "CPLUS_INCLUDE_PATH") "")))
              #t)))))
     (inputs
      `(("avahi" ,avahi)



reply via email to

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