gnu: clipnotify: Fix cross-compilation.

* gnu/packages/xdisorg.scm (clipnotify)[arguments]: Use CC-FOR-TARGET.
This commit is contained in:
Tobias Geerinckx-Rice 2020-06-02 19:24:36 +02:00
parent 2b9ce1007d
commit 3a169fe301
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79

View File

@ -2271,9 +2271,9 @@ configuring visual settings in different UI toolkits separately.")
(install-file "clipnotify" bin)
(install-file "README.md" doc)
#t))))
#:make-flags (list "CC=gcc")
;; the package provides no test suite:
#:tests? #f))
#:make-flags
(list ,(string-append "CC=" (cc-for-target)))
#:tests? #f)) ; no test suite
(inputs
`(("libx11" ,libx11)
("libXfixes" ,libxfixes)))