https://bugzilla.redhat.com/show_bug.cgi?id=858380

--- Comment #3 from gil cattaneo <[email protected]> ---
hi Clément,
great!
there is a problem with javadoc
you should copy only the content not the whole folder

in your spec file
mkdir -p %{buildroot}%{_javadocdir}/%{name}
cp -rdf build/javadoc/gluegen %{buildroot}%{_javadocdir}/%{name}
should be
mkdir -p %{buildroot}%{_javadocdir}/%{name}
cp -rdf build/javadoc/gluegen/* %{buildroot}%{_javadocdir}/%{name}
or
mkdir -p %{buildroot}%{_javadocdir}
cp -rdf build/javadoc/gluegen %{buildroot}%{_javadocdir}/%{name}
thanks

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
package-review mailing list
[email protected]
https://admin.fedoraproject.org/mailman/listinfo/package-review

Reply via email to