Merge pull request #17910 from womfoo/fix/plotutils-disable-i686-tests

plotutils: disable i686 tests
This commit is contained in:
Joachim F 2016-08-24 22:03:44 +02:00 committed by GitHub
commit 875e6c68de

View File

@ -19,7 +19,9 @@ stdenv.mkDerivation rec {
configureFlags = "--enable-libplotter"; # required for pstoedit
doCheck = true;
# disable tests on i686 like ubuntu
# https://lists.gnu.org/archive/html/bug-plotutils/2016-04/msg00002.html
doCheck = if stdenv.isi686 then false else true;
meta = {
description = "Powerful C/C++ library for exporting 2D vector graphics";