From b8ae8e8bd7add47a3d1ed96a2331b37aea8bf59b Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 15 Sep 2011 15:10:04 -0400 Subject: Do not build documentation on RHEL 5 RHEL 5 has a very old version of doxygen that does not search the correct locations for documentation. --- contrib/sssd.spec.in | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/contrib/sssd.spec.in b/contrib/sssd.spec.in index 9dc7f95d9..2cc3cd124 100644 --- a/contrib/sssd.spec.in +++ b/contrib/sssd.spec.in @@ -164,7 +164,18 @@ autoreconf -ivf --disable-static \ --disable-rpath -make %{?_smp_mflags} all docs +make %{?_smp_mflags} all + + +# Only build docs on recent distros +%if 0{?fedora} +make %{?_smp_mflags} docs +%endif + +%if 0{?rhel} >= 6 +make %{?_smp_mflags} docs +%endif + %check export CK_TIMEOUT_MULTIPLIER=10 @@ -290,7 +301,12 @@ rm -rf $RPM_BUILD_ROOT %files -n libipa_hbac-devel %defattr(-,root,root,-) +%if 0%{?fedora} %doc hbac_doc/html +%endif +%if 0%{?rhel} >= 6 +%doc hbac_doc/html +%endif %{_includedir}/ipa_hbac.h %{_libdir}/libipa_hbac.so %{_libdir}/pkgconfig/ipa_hbac.pc -- cgit