mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
* Pass makeFlags to `make check'.
svn path=/nixpkgs/trunk/; revision=7492
This commit is contained in:
parent
ed8fff32af
commit
8988c16eea
|
@ -597,8 +597,10 @@ checkW() {
|
|||
checkTarget="check"
|
||||
fi
|
||||
|
||||
echo "check flags: $checkFlags ${checkFlagsArray[@]}"
|
||||
make $checkFlags "${checkFlagsArray[@]}" $checkTarget || fail
|
||||
echo "check flags: $makeFlags ${makeFlagsArray[@]} $checkFlags ${checkFlagsArray[@]}"
|
||||
make \
|
||||
$makeFlags ${makeFlagsArray[@]} \
|
||||
$checkFlags "${checkFlagsArray[@]}" $checkTarget || fail
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue