From f1af58c32276a8aeabb32a3f679abeefde576950 Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Fri, 28 Sep 2007 12:49:12 +0000 Subject: [PATCH] - Add another build conditional for enabling %check, disabled by default. Previously %check was tied to building with tcl so it hasn't been in use, now check fails on koji builders on one of the lock tests but succeeds in local builds / mock, dunno... --- sqlite.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sqlite.spec b/sqlite.spec index 85f9fb0..f08e5c2 100644 --- a/sqlite.spec +++ b/sqlite.spec @@ -1,11 +1,12 @@ # bcond default logic is nicely backwards... %bcond_without tcl %bcond_with static +%bcond_with check Summary: Library that implements an embeddable SQL database engine Name: sqlite Version: 3.4.2 -Release: 2%{?dist} +Release: 3%{?dist} License: Public Domain Group: Applications/Databases URL: http://www.sqlite.org/ @@ -69,7 +70,7 @@ make DESTDIR=${RPM_BUILD_ROOT} install rm -f $RPM_BUILD_ROOT/%{_libdir}/*.{la,a} %endif -%if %{with tcl} +%if %{with check} %check make test %endif @@ -105,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %endif %changelog +* Fri Sep 28 2007 Panu Matilainen - 3.4.2-3 +- Add another build conditional for enabling %%check + * Fri Sep 28 2007 Panu Matilainen - 3.4.2-2 - Use bconds for the spec build conditionals - Enable -tcl subpackage again (#309041)