Please do not reply directly to this email. All additional comments should be made in the comments box of this bug report.
Summary: Review Request: trousers - The open-source TCG software stack
https://bugzilla.redhat.com/show_bug.cgi?id=323441
------- Additional Comments From mtasaka@ioa.s.u-tokyo.ac.jp 2007-11-28 06:24 EST ------- In reply to comment #14)
" "Requires(post/postun): ldconfig" is not needed.
It is required for ordering issues. As explained to me by Jarod Willson, "otherwise the Requires could be batched in the same rpm transaction, but not actually on the system when the package that actually needs it for its %post or %postun script [when] it [is] being handled."
Ah.. in this case this is needed because /sbin/ldconfig scriptlet is written within sh script executed on scriptlet.
Usually this is not needed because when we write --------------------------------------------------------- %post -p /sbin/ldconfig --------------------------------------------------------- (i.e. write /sbin/ldconfig in one line) rpmbuild adds "Requires(post): /sbin/ldconfig" "automatically" to binary rpms. But for this package, you are right.