gnu: clipnotify: Fix cross-compilation.
* gnu/packages/xdisorg.scm (clipnotify)[arguments]: Use CC-FOR-TARGET.
This commit is contained in:
parent
2b9ce1007d
commit
3a169fe301
1 changed files with 3 additions and 3 deletions
|
@ -2271,9 +2271,9 @@ configuring visual settings in different UI toolkits separately.")
|
||||||
(install-file "clipnotify" bin)
|
(install-file "clipnotify" bin)
|
||||||
(install-file "README.md" doc)
|
(install-file "README.md" doc)
|
||||||
#t))))
|
#t))))
|
||||||
#:make-flags (list "CC=gcc")
|
#:make-flags
|
||||||
;; the package provides no test suite:
|
(list ,(string-append "CC=" (cc-for-target)))
|
||||||
#:tests? #f))
|
#:tests? #f)) ; no test suite
|
||||||
(inputs
|
(inputs
|
||||||
`(("libx11" ,libx11)
|
`(("libx11" ,libx11)
|
||||||
("libXfixes" ,libxfixes)))
|
("libXfixes" ,libxfixes)))
|
||||||
|
|
Reference in a new issue