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 1Pt4Lz-0008Es-NV for garchives@archives.gentoo.org; Fri, 25 Feb 2011 20:33:31 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CB8CE05BE; Fri, 25 Feb 2011 20:33:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D6AB3E05BE for ; Fri, 25 Feb 2011 20:33:24 +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 61F431B40B6 for ; Fri, 25 Feb 2011 20:33:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id B7A798006A for ; Fri, 25 Feb 2011 20:33:23 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <15e251fdae81c43e78443587f0eb19b0ca158bd3.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ebuild-helpers/ X-VCS-Repository: proj/portage X-VCS-Files: bin/ebuild-helpers/doins X-VCS-Directories: bin/ebuild-helpers/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 15e251fdae81c43e78443587f0eb19b0ca158bd3 Date: Fri, 25 Feb 2011 20:33:23 +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: 87211198632a0b9419003f949089369b commit: 15e251fdae81c43e78443587f0eb19b0ca158bd3 Author: Zac Medico gentoo org> AuthorDate: Fri Feb 25 20:32:21 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Feb 25 20:32:21 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D15e251fd doins: fix dodoc directory error handling --- bin/ebuild-helpers/doins | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/bin/ebuild-helpers/doins b/bin/ebuild-helpers/doins index c549791..0aedcb9 100755 --- a/bin/ebuild-helpers/doins +++ b/bin/ebuild-helpers/doins @@ -89,6 +89,10 @@ for x in "$@" ; do if [[ $PRESERVE_SYMLINKS =3D n && -d $x ]] || \ [[ $PRESERVE_SYMLINKS =3D y && -d $x && ! -L $x ]] ; then if [ "${DOINSRECUR}" =3D=3D "n" ] ; then + if [[ ${0##*/} =3D=3D dodoc ]] ; then + echo "!!! ${0##*/}: $x is a directory" 1>&2 + ((failed|=3D1)) + fi continue fi =20