generic-poky/meta/packages/yum/files/extract-postinst.awk
Marcin Juszkiewicz 94fa2b90c5 yum: added 3.2.18
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5379 311d38ba-8fff-0310-9ca6-ca027cbcb966
2008-10-02 14:26:24 +00:00

12 lines
158 B
Awk

/Name:.*/ {
package = substr($0, 7)
next
}
/postinstall.*scriptlet .*/ {
next
}
{
print $0 >> ENVIRON["D"] "/etc/rpm-postinsts/" package ".sh"
}