Add patch to hopefully close race condition in systemd builds
- Related to https://bugzilla.redhat.com/show_bug.cgi?id=1249051 - And the test suite is failing but the logs are hidden under test-suite.log, so copy some code I had in dbus.spec to cat them.
This commit is contained in:
parent
f0b91355af
commit
6261eafeb9
@ -44,7 +44,13 @@ make %{?_smp_mflags}
|
||||
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
||||
|
||||
%check
|
||||
make check
|
||||
if ! make check; then
|
||||
find . -type f -name 'test-suite.log' | while read trs; do
|
||||
echo "BEGIN " ${trs}; cat ${trs} 1>&2;
|
||||
done
|
||||
echo "Exiting abnormally due to make check failure above" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
%files
|
||||
%doc AUTHORS README
|
||||
@ -58,6 +64,8 @@ make check
|
||||
* Mon Oct 12 2015 Colin Walters <walters@redhat.com> - 0.51.0-4
|
||||
- Add patch to hopefully close race condition in systemd builds
|
||||
- Related to https://bugzilla.redhat.com/show_bug.cgi?id=1249051
|
||||
- And the test suite is failing but the logs are hidden under
|
||||
test-suite.log, so copy some code I had in dbus.spec to cat them.
|
||||
|
||||
* Mon Jul 13 2015 Ralf Corsépius <corsepiu@fedoraproject.org> - 0.51.0-3
|
||||
- Add intltool-0.51.0-perl-5.22.patch (Address RHBZ#1233444)
|
||||
|
Loading…
Reference in New Issue
Block a user