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:
Ludovic Courtès 2014-10-31 00:10:44 +01:00
parent e0ea3f8a0d
commit 49aeaedfa7

View file

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