summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_install_pre.subr
diff options
context:
space:
mode:
Diffstat (limited to 'subr/pkg_install_pre.subr')
-rw-r--r--subr/pkg_install_pre.subr18
1 files changed, 0 insertions, 18 deletions
diff --git a/subr/pkg_install_pre.subr b/subr/pkg_install_pre.subr
deleted file mode 100644
index 7ab8a9e2..00000000
--- a/subr/pkg_install_pre.subr
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-# set -o errexit -o noglob are assumed.
-#
-
-pkg_install_pre() {
- if [ "${PKG_NAME%flavour_minipix}" != "${PKG_NAME}" ] \
- && [ ${ARG_DEBUG_MINIPIX:-0} -eq 0 ] \
- && [ -e "${PREFIX_MINIPIX}" ]; then
- find "${PREFIX_MINIPIX}" -perm /a=x \
- \( -type f -or -type l \) > "${WORKDIR}/.stat_minipix.old";
- elif [ "${BUILD}" = release ] \
- && [ -e "${PREFIX_NATIVE}/bin" ]; then
- find "${PREFIX_NATIVE}/bin" -perm /a=x \
- \( -type f -or -type l \) > "${WORKDIR}/.stat_native.old";
- fi;
-};
-
-# vim:filetype=sh