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 1SNnUX-0001Qk-W1 for garchives@archives.gentoo.org; Fri, 27 Apr 2012 15:53:54 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 510BFE078A; Fri, 27 Apr 2012 15:53:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1DC4BE078A for ; Fri, 27 Apr 2012 15:53:38 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 821601B4030 for ; Fri, 27 Apr 2012 15:53:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 42B5EE5402 for ; Fri, 27 Apr 2012 15:53:36 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1335541928.4025638c00de5e9e21ef419a5b107141525283ca.grobian@gentoo> Subject: [gentoo-commits] proj/portage:prefix commit in: pym/ X-VCS-Repository: proj/portage X-VCS-Files: pym/Makefile.in X-VCS-Directories: pym/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 4025638c00de5e9e21ef419a5b107141525283ca X-VCS-Branch: prefix Date: Fri, 27 Apr 2012 15:53:36 +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: 11c64e6e-2c97-4d80-ab4d-cba23844d5bc X-Archives-Hash: e104f94a2a557477b73f7866962bb952 commit: 4025638c00de5e9e21ef419a5b107141525283ca Author: Fabian Groffen gentoo org> AuthorDate: Fri Apr 27 15:52:08 2012 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Fri Apr 27 15:52:08 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D4025638c build-sys: avoid harmless error message during install Different way to fix #411817 by just avoiding to list a directory that won't contain python files. --- pym/Makefile.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/Makefile.in b/pym/Makefile.in index aa903bb..ce8fa39 100644 --- a/pym/Makefile.in +++ b/pym/Makefile.in @@ -17,7 +17,7 @@ INSTALL =3D @INSTALL@ INSTALL_subst =3D ${top_builddir}/subst-install =20 list_sourcedir_dirs =3D \ - ( cd "$(srcdir)" && find . -name '.svn' -prune -o -type d -print ) + ( cd "$(srcdir)" && find . -name '.git' -prune -o -type d -print | sed = 's#^./\?##' ) =20 all: =20