fix build when haddock disabled

This commit is contained in:
Jens Petersen 2018-09-13 18:50:47 +09:00
parent cb868ca7f2
commit 795be5d26c
1 changed files with 4 additions and 0 deletions

View File

@ -74,7 +74,9 @@ documentation.
%install
%ghc_lib_install
grep -v "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-devel-nodoc.files
%if %{undefined without_haddock}
grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-devel-doc.files
%endif
%check
@ -97,8 +99,10 @@ grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-dev
%doc CHANGELOG.md README.md
%if %{undefined without_haddock}
%files devel-doc -f %{name}-devel-doc.files
%doc CHANGELOG.md README.md
%endif
%changelog