Make mach build verbose

This commit is contained in:
Jan Horak 2021-08-18 09:36:09 +02:00
parent 6f1bee9d19
commit 6cbbe92554
1 changed files with 3 additions and 3 deletions

View File

@ -726,12 +726,12 @@ cp %{SOURCE45} .
%if %{build_with_pgo}
%if %{test_on_wayland}
env | grep "WAYLAND"
MOZ_ENABLE_WAYLAND=1 ./mach build 2>&1 | cat -
MOZ_ENABLE_WAYLAND=1 ./mach build -v 2>&1 | cat -
%else
xvfb-run ./mach build 2>&1 | cat -
xvfb-run ./mach build -v 2>&1 | cat -
%endif
%else
./mach build 2>&1 | cat -
./mach build -v 2>&1 | cat -
%endif