Backported from: From 426eb97ba762c7663884f57ead0909f2aa3cd6a5 Mon Sep 17 00:00:00 2001 From: Cyril Bouvier Date: Thu, 17 Jan 2019 16:32:19 +0100 Subject: [PATCH] Remove @LINBOXSAGE_LIBS@ from linbox.pc.in --- linbox.pc.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linbox.pc.in b/linbox.pc.in index 278f127e4..c6b8091eb 100644 --- a/linbox.pc.in +++ b/linbox.pc.in @@ -9,6 +9,6 @@ Description: Exact Linear Algebra library URL: http://github.com/linbox-team/linbox Version: @VERSION@ Requires: fflas-ffpack >= 2.4.0, givaro >= 4.1.0 -Libs: -L${libdir} -llinbox @LINBOXSAGE_LIBS@ @NTL_LIBS@ @MPFR_LIBS@ @FPLLL_LIBS@ @IML_LIBS@ @FLINT_LIBS@ @OCL_LIBS@ +Libs: -L${libdir} -llinbox @NTL_LIBS@ @MPFR_LIBS@ @FPLLL_LIBS@ @IML_LIBS@ @FLINT_LIBS@ @OCL_LIBS@ Cflags: @DEFAULT_CFLAGS@ -DDISABLE_COMMENTATOR -I${includedir} @NTL_CFLAGS@ @MPFR_CFLAGS@ @FPLLL_CFLAGS@ @IML_CFLAGS@ @FLINT_CFLAGS@ \------------------------------------------------------- bs'> aboutsummaryrefslogtreecommitdiff
path: root/tests/cpio.scm
AgeCommit message (Expand)Author
2022-12-20cpio: Skip test on inode numbers that don't fit on 32 bits....Fixes <https://issues.guix.gnu.org/60202>. Reported by Christopher Baines <mail@cbaines.net>. * tests/cpio.scm (%test-file): New variable. ("file->cpio-header + write-cpio-header + read-cpio-header"): Use it. Skip test when the inode number of %TEST-FILE is too big. Ludovic Courtès