From 16069362e2c77aacfaf4877ac17a78721e883eed Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Thu, 13 Nov 2014 09:46:21 -0500 Subject: [PATCH] Disable "make check" on arm builds; right now the test suite is broken there and raises false positives constantly. Signed-off-by: Peter Jones --- grubby.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/grubby.spec b/grubby.spec index 0d84113..8841a29 100644 --- a/grubby.spec +++ b/grubby.spec @@ -1,6 +1,6 @@ Name: grubby Version: 8.35 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Command line tool for updating bootloader configs Group: System Environment/Base License: GPLv2+ @@ -58,8 +58,10 @@ git config --unset user.name %build make %{?_smp_mflags} +%ifnarch aarch64 %{arm} %check make test +%endif %install rm -rf $RPM_BUILD_ROOT @@ -74,7 +76,6 @@ echo " " >> $RPM_BUILD_ROOT/boot/boot.scr %clean rm -rf $RPM_BUILD_ROOT - %files %defattr(-,root,root,-) %{!?_licensedir:%global license %%doc} @@ -89,6 +90,10 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Thu Nov 13 2014 Peter Jones - 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 - 8.35-8 - Treat kernel and kernel-core as identical in terms of --make-default Resolves: rhbz#1141414