From e2986bbe269ce93fc4a60f57e962fb9e2ebbddac 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(-) (limited to 'contrib') diff --git a/contrib/sssd.spec.in b/contrib/sssd.spec.in index 90afa039..aae4c427 100644 --- a/contrib/sssd.spec.in +++ b/contrib/sssd.spec.in @@ -178,7 +178,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 @@ -309,7 +320,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