From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QJxWZ-0001PA-WE for garchives@archives.gentoo.org; Wed, 11 May 2011 00:43:36 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8759E1C0EB; Wed, 11 May 2011 00:43:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5A1971C0EB for ; Wed, 11 May 2011 00:43:28 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EAAAC1B408A for ; Wed, 11 May 2011 00:43:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 5FC9B3D468 for ; Wed, 11 May 2011 00:43:27 +0000 (UTC) From: "Paul Varner" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Varner" Message-ID: <6d3eb84a5739faf2c4dcb6030791fdd7491ce570.fuzzyray@gentoo> Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: bin/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: bin/revdep-rebuild X-VCS-Directories: bin/ X-VCS-Committer: fuzzyray X-VCS-Committer-Name: Paul Varner X-VCS-Revision: 6d3eb84a5739faf2c4dcb6030791fdd7491ce570 Date: Wed, 11 May 2011 00:43:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 262b8d3dc73683dda4a5c67cfd62635a commit: 6d3eb84a5739faf2c4dcb6030791fdd7491ce570 Author: Paul Varner gentoo org> AuthorDate: Wed May 11 00:43:20 2011 +0000 Commit: Paul Varner gentoo org> CommitDate: Wed May 11 00:43:20 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoolkit.gi= t;a=3Dcommit;h=3D6d3eb84a Change chmod 700 to chmod 600 when changing permissions on the cache file= s. Bug 356779 --- bin/revdep-rebuild | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/revdep-rebuild b/bin/revdep-rebuild index e034124..7d89238 100755 --- a/bin/revdep-rebuild +++ b/bin/revdep-rebuild @@ -629,7 +629,7 @@ get_search_env() { for file in "${FILES[@]}"; do if [ -e "$file" ]; then chown ${uid}:portage "$file" - chmod 700 "$file" + chmod 600 "$file" fi done fi