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 1RDg8g-0000yY-TD for garchives@archives.gentoo.org; Tue, 11 Oct 2011 17:29:15 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B400E21C1DF; Tue, 11 Oct 2011 17:29:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 88B3C21C1DF for ; Tue, 11 Oct 2011 17:29:06 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E4141B4006 for ; Tue, 11 Oct 2011 17:29:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 685D480042 for ; Tue, 11 Oct 2011 17:29:05 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <86e3ed5b8d1efdd439415cb3dec2905e5de058dc.vapier@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ebuild-helpers/ X-VCS-Repository: proj/portage X-VCS-Files: bin/ebuild-helpers/prepstrip X-VCS-Directories: bin/ebuild-helpers/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 86e3ed5b8d1efdd439415cb3dec2905e5de058dc Date: Tue, 11 Oct 2011 17:29:05 +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: 7b66ce9234fd84ab123c1420aa7e8c5a commit: 86e3ed5b8d1efdd439415cb3dec2905e5de058dc Author: Mike Frysinger gentoo org> AuthorDate: Tue Oct 11 17:28:45 2011 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Oct 11 17:28:59 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D86e3ed5b prepstrip: make sure eu-strip embeds right filename Signed-off-by: Mike Frysinger gentoo.org> --- bin/ebuild-helpers/prepstrip | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/bin/ebuild-helpers/prepstrip b/bin/ebuild-helpers/prepstrip index 7f158c2..8c2ca48 100755 --- a/bin/ebuild-helpers/prepstrip +++ b/bin/ebuild-helpers/prepstrip @@ -146,7 +146,10 @@ process_elf() { if ${strip_this} ; then # see if we can split & strip at the same time if [[ -n ${SPLIT_STRIP_FLAGS} ]] ; then - ${STRIP} ${strip_flags} -f "${T}"/prepstrip.split.debug "${x}" + ${STRIP} ${strip_flags} \ + -f "${T}"/prepstrip.split.debug \ + -F "${x##*/}.debug" \ + "${x}" save_elf_debug "${x}" else save_elf_debug "${x}"