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.77) (envelope-from ) id 1Snuqz-00039D-Px for garchives@archives.gentoo.org; Sun, 08 Jul 2012 17:01:02 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84737E019D; Sun, 8 Jul 2012 17:00:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5891FE019D for ; Sun, 8 Jul 2012 17:00:47 +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 C05251B4017 for ; Sun, 8 Jul 2012 17:00:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 5B349E5433 for ; Sun, 8 Jul 2012 17:00:45 +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: <1341766715.2ffa184779089f60fb30f471415be4f8c841420d.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: 2ffa184779089f60fb30f471415be4f8c841420d X-VCS-Branch: prefix Date: Sun, 8 Jul 2012 17:00:45 +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: ce6eb8e3-9465-46fa-96bd-16768929db2a X-Archives-Hash: 225e1ac3f71559ecdf1b57275d17b0a2 commit: 2ffa184779089f60fb30f471415be4f8c841420d Author: Fabian Groffen gentoo org> AuthorDate: Sun Jul 8 16:58:35 2012 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Jul 8 16:58:35 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D2ffa1847 build-sys: fix installation of files avoid using hash in the sed, the interaction of make with the shell seems to interpret the hash somewhere, despite being quoted, resulting in loss of half of the sed command --- pym/Makefile.in | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/pym/Makefile.in b/pym/Makefile.in index ce8fa39..f9a9636 100644 --- a/pym/Makefile.in +++ b/pym/Makefile.in @@ -16,14 +16,11 @@ PORTAGE_PYM =3D @PORTAGE_BASE@/pym INSTALL =3D @INSTALL@ INSTALL_subst =3D ${top_builddir}/subst-install =20 -list_sourcedir_dirs =3D \ - ( cd "$(srcdir)" && find . -name '.git' -prune -o -type d -print | sed = 's#^./\?##' ) - all: =20 install: $(INSTALL) -d -m 755 -o "$(portageuser)" -g "$(portagegroup)" $(DESTDIR= )$(PORTAGE_PYM) - $(list_sourcedir_dirs) | while read f ; do \ + ( cd "$(srcdir)" && find . -name '.git' -prune -o -type d -print | sed = 's|^./\?||' ) | while read f ; do \ $(INSTALL) -d -m 755 \ -o "$(portageuser)" -g "$(portagegroup)" \ "$(DESTDIR)$(PORTAGE_PYM)/$${f}" && \