mc ()
{
        mkdir -p $HOME/.mc/tmp 2> /dev/null
	chmod 700 $HOME/.mc/tmp
	MC=$HOME/.mc/tmp/mc-$$
	@prefix@/bin/mc -P "$@" > "$MC"
	cd "`cat $MC`"
	rm -f "$MC"
        unset MC;
}

if test -n "$BASH_VERSION"; then
	export -f mc
fi