avs_mtk_voice/meta/poky/scripts/rootfs_rpm-extract-postinst...

12 lines
158 B
Awk
Raw Permalink Normal View History

2022-05-13 08:02:31 +00:00
/Name:.*/ {
package = substr($0, 7)
next
}
/postinstall.*scriptlet .*/ {
next
}
{
print $0 >> ENVIRON["D"] "/etc/rpm-postinsts/" package ".sh"
}