From 7dd51b427d4e5c047c831d82456a3d8769c30e04 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Fri, 31 Jul 2015 14:09:25 +0200 Subject: SPEC: Workaround for build with rpm 4.13 If the tarball is generated with minimal dependencies extracted from spec file then translated manual pages are not generated due to missing script po4a. This step is not necessary for regular nightly/developer builds. The tarball is created faster without such step. However rpm >= 4.13 will fail due to empty manifest file. Resolves: https://fedorahosted.org/sssd/ticket/2738 Reviewed-by: Jakub Hrozek --- contrib/sssd.spec.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/sssd.spec.in b/contrib/sssd.spec.in index 2600438f3..0828bb8df 100644 --- a/contrib/sssd.spec.in +++ b/contrib/sssd.spec.in @@ -4,6 +4,9 @@ # we don't want to provide private python extension libs %define __provides_exclude_from %{python_sitearch}/.*\.so$ +# workaround for rpm 4.13 +%define _empty_manifest_terminate_build 0 + %if (0%{?fedora} || 0%{?rhel} >= 7) %global use_systemd 1 %endif -- cgit