Print log on make check failure

Fix the location of the log to be printed in case of failure of make
check.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
Frederic Berat 2022-02-01 17:22:22 +01:00
parent 60e84e58fc
commit e334a543f5
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ autoreconf -v
%check
%if %{with check}
make check VERBOSE=yes || { cat testsuite.log ; false ; }
make check VERBOSE=yes || { cat tests/testsuite.dir/*/testsuite.log ; false ; }
%endif