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 5D1FF138330 for ; Wed, 5 Oct 2016 22:03:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FE64E07EB; Wed, 5 Oct 2016 22:03:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E9657E07EB for ; Wed, 5 Oct 2016 22:03:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 725463411B0 for ; Wed, 5 Oct 2016 22:03:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6958124A5 for ; Wed, 5 Oct 2016 22:03:01 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1475704972.6d99ca0f8fa7d577d2e23b54e7453e1ce16e98cc.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/boost/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/boost/boost-1.62.0.ebuild X-VCS-Directories: dev-libs/boost/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 6d99ca0f8fa7d577d2e23b54e7453e1ce16e98cc X-VCS-Branch: master Date: Wed, 5 Oct 2016 22:03:01 +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: 917224db-ad72-4050-ad38-c18e17c18223 X-Archives-Hash: 7ff02b8839ad7a9c2eb1a0d62f1cb346 commit: 6d99ca0f8fa7d577d2e23b54e7453e1ce16e98cc Author: David Seifert gentoo org> AuthorDate: Wed Oct 5 22:02:24 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Oct 5 22:02:52 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d99ca0f dev-libs/boost: Correct find command to delete non-empty dirs Gentoo-bug: 596216 Package-Manager: portage-2.3.1 dev-libs/boost/boost-1.62.0.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-libs/boost/boost-1.62.0.ebuild b/dev-libs/boost/boost-1.62.0.ebuild index a4c21c9..e186bc3 100644 --- a/dev-libs/boost/boost-1.62.0.ebuild +++ b/dev-libs/boost/boost-1.62.0.ebuild @@ -294,9 +294,10 @@ multilib_src_install_all() { fi if use doc; then - find libs/*/* -iname "test" -or -iname "src" -delete || die - find doc -name Jamfile.v2 -or -name build -or -name *.manifest -delete || die - find tools -name Jamfile.v2 -or -name src -or -name *.cpp -or -name *.hpp -delete || die + find libs/*/* -depth \( -iname 'test' -o -iname 'src' \) -delete || die + find doc -depth \( -name 'Jamfile.v2' -o -name 'build' -o -name '*.manifest' \) -delete || die + find tools -depth \( -name 'Jamfile.v2' -o -name 'src' -o -name '*.cpp' -o -name '*.hpp' \) -delete || die + docinto html dodoc *.{htm,html,png,css} dodoc -r doc libs more tools