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

--- Comment #6 from Christian Krause <[email protected]> 2010-07-04 11:22:48 EDT 
---
Thanks for the new package. Everything is fixed now besides the regexp to
filter out the provides/requires:

The used syntax doesn't work:
$ echo "_objects.so"| grep -v -e '_objects.so|_pack.so'
_objects.so
$

It is necessary to use "-E" for "extended regexp":
$ echo "_objects.so"| grep -v -E '_objects.so|_pack.so'
$

If you change the package for this, please just remove also the commented line
with "##grep..." in the %build section. ;-)

-- 
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.
_______________________________________________
package-review mailing list
[email protected]
https://admin.fedoraproject.org/mailman/listinfo/package-review

Reply via email to