Remove tracePhases

This has not been used in a long time.
This commit is contained in:
Eelco Dolstra 2017-09-07 22:15:37 +02:00
parent ec8d41f08c
commit 6b3cef2246

View File

@ -1016,11 +1016,6 @@ genericBuild() {
if [[ "$curPhase" = installCheckPhase && -z "${doInstallCheck:-}" ]]; then continue; fi
if [[ "$curPhase" = distPhase && -z "${doDist:-}" ]]; then continue; fi
if [[ -n "${tracePhases:-}" ]]; then
echo
echo "@ phase-started $out $curPhase"
fi
showPhaseHeader "$curPhase"
dumpVars
@ -1034,11 +1029,6 @@ genericBuild() {
if [ "$curPhase" = unpackPhase ]; then
cd "${sourceRoot:-.}"
fi
if [ -n "${tracePhases:-}" ]; then
echo
echo "@ phase-succeeded $out $curPhase"
fi
done
}