crops-yocto/poky/scripts/rootfs_rpm-extract-postinst.awk

12 lines
158 B
Awk
Raw Permalink Normal View History

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