Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=595603
Ben Boeckel mathstuf@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |mathstuf@gmail.com
--- Comment #26 from Ben Boeckel mathstuf@gmail.com 2010-09-01 19:14:33 EDT --- %doc is magic when just specifying files in the tarball. Also, explicitly mentioning %doc on %{_mandir} or %{_docdir} is unnecessary since it's implicit to RPM. Here's what I'd do:
rm -rf $RPM_BUILD_ROOT %ghc_lib_install mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version} install -p COPYING ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}/COPYING
The directory is already owned through %doc commands make the directory owned and everything in it is then brought in through that. It's a little messy :( .
haskell-devel@lists.fedoraproject.org