Archived
1
0
Fork 0

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 "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)))