From f6f7283e692111603b15bae48026432469b85085 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Sun, 18 Nov 2018 13:42:05 -0600 Subject: [PATCH] meson: remove check phase This is now handled in ninja. --- .../tools/build-managers/meson/setup-hook.sh | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/pkgs/development/tools/build-managers/meson/setup-hook.sh b/pkgs/development/tools/build-managers/meson/setup-hook.sh index b98225c1305..06375c1528e 100644 --- a/pkgs/development/tools/build-managers/meson/setup-hook.sh +++ b/pkgs/development/tools/build-managers/meson/setup-hook.sh @@ -39,15 +39,3 @@ if [ -z "$dontUseMesonConfigure" -a -z "$configurePhase" ]; then setOutputFlags= configurePhase=mesonConfigurePhase fi - -mesonCheckPhase() { - runHook preCheck - - meson test --print-errorlogs - - runHook postCheck -} - -if [ -z "$dontUseMesonCheck" -a -z "$checkPhase" ]; then - checkPhase=mesonCheckPhase -fi