mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: synergy: Fix build failure.
* gnu/packages/synergy.scm (synergy)[arguments]: Prepend to CPLUS_INCLUDE_PATH instead of overriding it.
This commit is contained in:
parent
57f24c200f
commit
ba66eec741
1 changed files with 2 additions and 1 deletions
|
@ -63,7 +63,8 @@ (define-public synergy
|
|||
(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)
|
||||
|
|
Loading…
Reference in a new issue