From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1894C1396D9 for ; Wed, 11 Oct 2017 21:40:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4CF6C2BC008; Wed, 11 Oct 2017 21:40:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2CF0D2BC008 for ; Wed, 11 Oct 2017 21:40:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1B88B33BF0F for ; Wed, 11 Oct 2017 21:40:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A137590B8 for ; Wed, 11 Oct 2017 21:40:32 +0000 (UTC) From: "Steve Arnold" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Steve Arnold" Message-ID: <1507758010.559cf5f4b15f024e21eab5f2458effe7806da8ad.nerdboy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/gdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/gdb/gdb-8.0.1.ebuild X-VCS-Directories: sys-devel/gdb/ X-VCS-Committer: nerdboy X-VCS-Committer-Name: Steve Arnold X-VCS-Revision: 559cf5f4b15f024e21eab5f2458effe7806da8ad X-VCS-Branch: master Date: Wed, 11 Oct 2017 21:40:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e7093bb0-bdae-45cd-8ec8-11f16e852c10 X-Archives-Hash: 8ccba81a193fb08f712f179ed49d38e5 commit: 559cf5f4b15f024e21eab5f2458effe7806da8ad Author: Stephen L Arnold gentoo org> AuthorDate: Wed Oct 11 21:39:20 2017 +0000 Commit: Steve Arnold gentoo org> CommitDate: Wed Oct 11 21:40:10 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=559cf5f4 sys-devel/gdb: fix build with USE=-nls * add f to rm -r for when locale dir is not there Package-Manager: Portage-2.3.11, Repoman-2.3.3 sys-devel/gdb/gdb-8.0.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-devel/gdb/gdb-8.0.1.ebuild b/sys-devel/gdb/gdb-8.0.1.ebuild index 82cbc96263c..6e1aa11c9e2 100644 --- a/sys-devel/gdb/gdb-8.0.1.ebuild +++ b/sys-devel/gdb/gdb-8.0.1.ebuild @@ -178,7 +178,7 @@ src_test() { } src_install() { - if use server && ! use client; then + if use server && ! use client; then cd gdb/gdbserver || die fi default @@ -197,7 +197,7 @@ src_install() { # Don't install docs when building a cross-gdb if [[ ${CTARGET} != ${CHOST} ]] ; then - rm -r "${ED}"/usr/share/{doc,info,locale} || die + rm -rf "${ED}"/usr/share/{doc,info,locale} || die local f for f in "${ED}"/usr/share/man/*/* ; do if [[ ${f##*/} != ${CTARGET}-* ]] ; then