From a7047c5a48c19f1140a0bb01391f8eb75dedbcac Mon Sep 17 00:00:00 2001 From: fuzzyray Date: Tue, 5 May 2009 21:30:51 +0000 Subject: [PATCH] Add patch from kojiro to remove permission check on temporary directory. (Bug 203414) svn path=/trunk/gentoolkit/; revision=602 --- bin/revdep-rebuild | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/bin/revdep-rebuild b/bin/revdep-rebuild index 72efba0..b44dadc 100755 --- a/bin/revdep-rebuild +++ b/bin/revdep-rebuild @@ -507,16 +507,9 @@ setup_rm() { # $1 - directory name # $2 - user name verify_tmpdir() { - umask 007 || die $? "Unable to set umask 007" if [[ ! $1 ]]; then die 1 'Temporary file path is unset! (This is a bug.)' elif [[ -d $1 ]]; then - # HACK: I hate using find this way - if [[ $(find "$1" -type d ! \( -user $2 -perm -0700 \) ) ]]; then - eerror "Incorrect permissions on $1" - eerror "or at least one file in $1." - die 1 "Please make sure it's not a symlink and then remove it." - fi cd "$1" else die 1 "Unable to find a satisfactory location for temporary files ($1)" @@ -536,7 +529,7 @@ get_search_env() { fi # From here on all work is done inside the temporary directory - verify_tmpdir "$tmp_target" "$uid" + verify_tmpdir "$tmp_target" WORKING_DIR="$tmp_target" if [[ $SEARCH_BROKEN ]]; then -- 2.26.2