gnu: gpsbabel: Correctly unquote the value for #:tests?.
* gnu/packages/gps.scm (gpsbabel)[arguments]: Add missing unquote.
Fixes typo introduced in 8235039
.
This commit is contained in:
parent
e0ea3f8a0d
commit
49aeaedfa7
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ (define-public gpsbabel
|
|||
;; On i686, 'raymarine.test' fails because of a rounding error:
|
||||
;; <http://hydra.gnu.org/build/133040>. As a workaround, disable tests
|
||||
;; on these platforms.
|
||||
#:tests? (not (string-prefix? "i686" (%current-system)))))
|
||||
#:tests? ,(not (string-prefix? "i686" (%current-system)))))
|
||||
(inputs
|
||||
`(("expat" ,expat)
|
||||
("zlib" ,zlib)
|
||||
|
|
Loading…
Reference in a new issue