Remove install_mask from ebuild.sh since it's in misc-functions.sh now.
authorZac Medico <zmedico@gentoo.org>
Thu, 9 Mar 2006 04:48:28 +0000 (04:48 -0000)
committerZac Medico <zmedico@gentoo.org>
Thu, 9 Mar 2006 04:48:28 +0000 (04:48 -0000)
svn path=/main/trunk/; revision=2833

bin/ebuild.sh

index 288d68602129bd046081209f9a2653645dc733ef..3e96503c20e24757dc1fda7e761346ddc98af8e2 100755 (executable)
@@ -1301,28 +1301,6 @@ dyn_install() {
        trap SIGINT SIGQUIT
 }
 
-install_mask() {
-       local root="$1"
-       shift
-       local install_mask="$*"
-
-       # we don't want globbing for initial expansion, but afterwards, we do
-       local shopts=$-
-       set -o noglob
-       for no_inst in ${install_mask}; do
-               set +o noglob
-               einfo "Removing ${no_inst}"
-               # normal stuff
-               rm -Rf ${root}/${no_inst} >&/dev/null
-
-               # we also need to handle globs (*.a, *.h, etc)
-               find "${root}" -name ${no_inst} -exec rm -fR {} \; >&/dev/null
-       done
-       # set everything back the way we found it
-       set +o noglob
-       set -${shopts}
-}
-
 dyn_preinst() {
        if [ -z "$IMAGE" ]; then
                        eerror "${FUNCNAME}: IMAGE is unset"