mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: acl: Fix cross-compilation.
This is a follow-up of 6693eac6eb
.
* gnu/packages/acl.scm (acl): Disable tests when cross-compiling.
This commit is contained in:
parent
e039202230
commit
559c134b0e
1 changed files with 2 additions and 1 deletions
|
@ -51,7 +51,8 @@ (define-public acl
|
|||
`(#:modules ((ice-9 ftw)
|
||||
,@%gnu-build-system-modules)
|
||||
#:configure-flags '("--disable-static")
|
||||
#:tests? ,(not (hurd-target?))
|
||||
#:tests? ,(not (or (%current-target-system)
|
||||
(hurd-target?)))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; XXX After repacking the sources the timestamps are reset to the
|
||||
|
|
Loading…
Reference in a new issue