mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: automake-1.17: Fix cross-build.
* gnu/packages/autotools.scm (automake)[arguments]: Skip two tests that attempt to run [cross-]built executables, when cross-building. Change-Id: I24bd012352400583fd8aad67c6d1f344954f973c
This commit is contained in:
parent
832f6130d6
commit
868161a287
1 changed files with 10 additions and 1 deletions
|
@ -462,7 +462,16 @@ Makefile, simplifying the entire process for the developer.")
|
|||
;; make: Nothing to be done for 'all'.
|
||||
"t/remake-aclocal-version-mismatch.sh")
|
||||
(("^#!.*" all)
|
||||
(string-append all "exit 77;\n")))))))))))
|
||||
(string-append all "exit 77;\n")))))
|
||||
#$@(if (%current-target-system)
|
||||
#~((add-before 'check 'cross-skip-tests
|
||||
(lambda _
|
||||
;; These tests try to execute a cross-built program
|
||||
(substitute* '("t/dist-vs-built-sources.sh"
|
||||
"t/subobj-objname-clash.sh")
|
||||
(("^#!.*" all)
|
||||
(string-append all "exit 77;\n"))))))
|
||||
#~())))))))
|
||||
|
||||
(define-public libtool
|
||||
(package
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue