Disable "make check" on arm builds; right now the test suite is broken

there and raises false positives constantly.

Signed-off-by: Peter Jones <pjones@redhat.com>
This commit is contained in:
Peter Jones 2014-11-13 09:46:21 -05:00
parent e2a3f9ce83
commit 13b3f1d5f2
1 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,6 @@
Name: grubby Name: grubby
Version: 8.35 Version: 8.35
Release: 8%{?dist} Release: 9%{?dist}
Summary: Command line tool for updating bootloader configs Summary: Command line tool for updating bootloader configs
Group: System Environment/Base Group: System Environment/Base
License: GPLv2+ License: GPLv2+
@ -58,8 +58,10 @@ git config --unset user.name
%build %build
make %{?_smp_mflags} make %{?_smp_mflags}
%ifnarch aarch64 %{arm}
%check %check
make test make test
%endif
%install %install
rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT
@ -74,7 +76,6 @@ echo " " >> $RPM_BUILD_ROOT/boot/boot.scr
%clean %clean
rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT
%files %files
%defattr(-,root,root,-) %defattr(-,root,root,-)
%{!?_licensedir:%global license %%doc} %{!?_licensedir:%global license %%doc}
@ -89,6 +90,10 @@ rm -rf $RPM_BUILD_ROOT
%endif %endif
%changelog %changelog
* Thu Nov 13 2014 Peter Jones <pjones@redhat.com> - 8.35-9
- Disable "make check" on arm builds; right now the test suite is broken
there and raises false positives constantly.
* Mon Oct 27 2014 Peter Jones <pjones@redhat.com> - 8.35-8 * Mon Oct 27 2014 Peter Jones <pjones@redhat.com> - 8.35-8
- Treat kernel and kernel-core as identical in terms of --make-default - Treat kernel and kernel-core as identical in terms of --make-default
Resolves: rhbz#1141414 Resolves: rhbz#1141414