Make mach build verbose

This commit is contained in:
Jan Horak 2021-08-18 09:36:09 +02:00
parent 6f1bee9d19
commit 6cbbe92554

View File

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