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=472144





--- Comment #2 from Thomas Moschny <[EMAIL PROTECTED]>  2008-11-19 03:22:42 EDT 
---
Furthermore, you (accidentally) transferred classes from .jar files from the
'source' distribution into the final rpm, which is strictly not allowed.

The reason is, that this command is wrong:

  find -name '*.jar' -o -name '*.class' -exec rm -f '{}' \;

It needs to be changed to

  find \( -name '*.jar' -o -name '*.class' \) -exec rm -f '{}' \;

in order to work as expected.

-- 
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

_______________________________________________
Fedora-package-review mailing list
[email protected]
http://www.redhat.com/mailman/listinfo/fedora-package-review

Reply via email to