bison: only run install check
Install check appears to run the normal check target as well. This introduces a scenario where a large test suite is being ran twice.
This commit is contained in:
parent
8073a6fb09
commit
2d8f2d938c
1 changed files with 2 additions and 1 deletions
|
@ -28,7 +28,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
doCheck = true;
|
||||
# Normal check and install check largely execute the same test suite
|
||||
doCheck = false;
|
||||
doInstallCheck = true;
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue