diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-10-31 00:10:44 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-10-31 00:10:44 +0100 |
commit | 49aeaedfa72ce808e3977fff814791def3b7f6dc (patch) | |
tree | 2680668c0e700600e470ac490261ce7eae01079d /gnu/packages/gps.scm | |
parent | e0ea3f8a0d63004f0be41c4643aabcefc67a2139 (diff) | |
download | guix-49aeaedfa72ce808e3977fff814791def3b7f6dc.tar guix-49aeaedfa72ce808e3977fff814791def3b7f6dc.tar.gz |
gnu: gpsbabel: Correctly unquote the value for #:tests?.
* gnu/packages/gps.scm (gpsbabel)[arguments]: Add missing unquote.
Fixes typo introduced in 8235039.
Diffstat (limited to 'gnu/packages/gps.scm')
-rw-r--r-- | gnu/packages/gps.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gps.scm b/gnu/packages/gps.scm index a6ed39e9dc..1fbf38f125 100644 --- a/gnu/packages/gps.scm +++ b/gnu/packages/gps.scm @@ -58,7 +58,7 @@ ;; 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) |