mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 01:26:43 +01:00
gnu: zstd: Skip tests when cross-compiling.
* gnu/packages/compression.scm (zstd)[arguments]: Adjust #:tests? to skip tests when cross-compiling.
This commit is contained in:
parent
261422e745
commit
8442760638
1 changed files with 2 additions and 1 deletions
|
@ -1661,7 +1661,8 @@ (define-public zstd
|
|||
;; Not currently detected, but be explicit & avoid surprises later.
|
||||
"HAVE_LZ4=0"
|
||||
"HAVE_ZLIB=0")
|
||||
#:tests? ,(not (target-hurd?))))
|
||||
#:tests? ,(not (or (target-hurd?)
|
||||
(%current-target-system)))))
|
||||
(home-page "https://facebook.github.io/zstd/")
|
||||
(synopsis "Zstandard real-time compression algorithm")
|
||||
(description "Zstandard (@command{zstd}) is a lossless compression algorithm
|
||||
|
|
Loading…
Reference in a new issue