gnu: kmod: Disable tests in 'Makefile.in' instead of 'Makefile.am'.

This avoids a build failure because the package was bootstrapped with an older
version of Automake.  By substituting the .in file we avoid triggering the
Autoconf machinery.

* gnu/packages/linux.scm (kmod)[arguments]: Change the 'disable-tests' phase
to substitute "Makefile.in" instead of "Makefile.am".
[native-inputs]: Remove AUTOMAKE and AUTOCONF.
This commit is contained in:
Marius Bakke 2020-05-15 01:26:59 +02:00 committed by Marius Bakke
parent ddcfc46796
commit 312d9a3320
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -2950,9 +2950,7 @@ (define-public kmod
(patches (search-patches "kmod-module-directory.patch"))))
(build-system gnu-build-system)
(native-inputs
`(("automake" ,automake)
("autoconf" ,autoconf)
("pkg-config" ,pkg-config)))
`(("pkg-config" ,pkg-config)))
(inputs
`(("xz" ,xz)
("zlib" ,zlib)))
@ -2964,7 +2962,7 @@ (define-public kmod
(add-after 'unpack 'disable-tests
(lambda _
;; XXX: These tests need '--sysconfdir=/etc' to pass.
(substitute* "Makefile.am"
(substitute* "Makefile.in"
(("testsuite/test-modprobe") "")
(("testsuite/test-depmod") "")
(("testsuite/test-blacklist") ""))