diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2020-04-18 07:38:03 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2020-04-18 07:38:03 -0400 |
commit | 19ae7cd2976370ceb11cad79dd39520b51499523 (patch) | |
tree | 6ebcd3bae6dedb5b5accdd46e0ee6ceb7d09f2ca /sci-mathematics/flintqs | |
parent | profiles/arch/hppa/package.use*.mask: fix freeimpi[nagios] mask (diff) | |
download | gentoo-19ae7cd2976370ceb11cad79dd39520b51499523.tar.gz gentoo-19ae7cd2976370ceb11cad79dd39520b51499523.tar.bz2 gentoo-19ae7cd2976370ceb11cad79dd39520b51499523.zip |
sci-mathematics/flintqs: fix the test suite.
I accidentally tested the installed version of QuadraticSieve
(which may not exist) instead of the one we just built. Thanks
to François Bissey who figured out what I did wrong.
Closes: https://bugs.gentoo.org/718006
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
Diffstat (limited to 'sci-mathematics/flintqs')
-rw-r--r-- | sci-mathematics/flintqs/flintqs-1.0.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sci-mathematics/flintqs/flintqs-1.0.ebuild b/sci-mathematics/flintqs/flintqs-1.0.ebuild index 676e751c8bd8..cf8353473ffa 100644 --- a/sci-mathematics/flintqs/flintqs-1.0.ebuild +++ b/sci-mathematics/flintqs/flintqs-1.0.ebuild @@ -28,7 +28,7 @@ src_test() { # The sed command deletes all lines up to the pattern match. # ACTUAL=$(echo 1000000000000000005490000000000000001989 | \ - QuadraticSieve | \ + "${S}"/src/QuadraticSieve | \ sed '0,/FACTORS:/d' | \ sort --numeric | \ uniq | |