diff options
-rw-r--r-- | vars/rpm_host.vars | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vars/rpm_host.vars b/vars/rpm_host.vars new file mode 100644 index 00000000..ed948c91 --- /dev/null +++ b/vars/rpm_host.vars @@ -0,0 +1,10 @@ +# +# set -o errexit -o noglob are assumed. +# + +pkg_rpm_host_install_pre() { + echo "#!/bin/true" > "${PKG_DESTDIR}/lib/rpm/elfdeps"; + chmod +x "${PKG_DESTDIR}/lib/rpm/elfdeps"; +}; + +# vim:filetype=sh |