gnu: xfce4-pulseaudio-plugin: Adjust for GCC7 search path change.
* gnu/packages/xfce.scm (xfce4-pulseaudio-plugin)[arguments]: Gracefully handle a missing C_INCLUDE_PATH.
This commit is contained in:
parent
3128d6a16a
commit
e17f1c3dcc
|
@ -434,7 +434,7 @@ matching them against regular expressions.")
|
||||||
"/include/dbus-1.0" ":"
|
"/include/dbus-1.0" ":"
|
||||||
(assoc-ref inputs "dbus")
|
(assoc-ref inputs "dbus")
|
||||||
"/include/dbus-1.0" ":"
|
"/include/dbus-1.0" ":"
|
||||||
(getenv "C_INCLUDE_PATH")))
|
(or (getenv "C_INCLUDE_PATH") "")))
|
||||||
#t)))))
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("intltool" ,intltool)
|
`(("intltool" ,intltool)
|
||||||
|
|
Loading…
Reference in New Issue