mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-05-22 17:16:01 +02: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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user