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 225D31382C5 for ; Thu, 25 Jun 2020 07:11:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 587B8E08F3; Thu, 25 Jun 2020 07:11:27 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 4790BE08F3 for ; Thu, 25 Jun 2020 07:11:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4B95434F0D0 for ; Thu, 25 Jun 2020 07:11:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC6D329A for ; Thu, 25 Jun 2020 07:11:23 +0000 (UTC) From: "Jason A. Donenfeld" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason A. Donenfeld" Message-ID: <1593069064.354befb3a8c4386063a1d66a46cd3ac739b37994.zx2c4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qt-creator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qt-creator/qt-creator-9999.ebuild X-VCS-Directories: dev-qt/qt-creator/ X-VCS-Committer: zx2c4 X-VCS-Committer-Name: Jason A. Donenfeld X-VCS-Revision: 354befb3a8c4386063a1d66a46cd3ac739b37994 X-VCS-Branch: master Date: Thu, 25 Jun 2020 07:11:23 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ce88dcbd-7a6b-47af-a9e4-c8e6099d39cd X-Archives-Hash: e944485c9a216ab3638abd802082cbc4 commit: 354befb3a8c4386063a1d66a46cd3ac739b37994 Author: Peter Levine gmail com> AuthorDate: Sat May 23 02:02:35 2020 +0000 Commit: Jason A. Donenfeld gentoo org> CommitDate: Thu Jun 25 07:11:04 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=354befb3 dev-qt/qt-creator: rm fixups Don't use -f. If it fails, we likely want to know. Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Peter Levine gmail.com> Signed-off-by: Jason A. Donenfeld gentoo.org> dev-qt/qt-creator/qt-creator-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-qt/qt-creator/qt-creator-9999.ebuild b/dev-qt/qt-creator/qt-creator-9999.ebuild index c6649849153..4dcb19e8b43 100644 --- a/dev-qt/qt-creator/qt-creator-9999.ebuild +++ b/dev-qt/qt-creator/qt-creator-9999.ebuild @@ -131,7 +131,7 @@ src_prepare() { sed -i -e '/modelinglib/d' src/libs/libs.pro || die fi if ! use perfprofiler; then - rm -rf src/tools/perfparser || die + rm -r src/tools/perfparser || die if ! use ctfvisualizer && ! use qmlprofiler; then sed -i -e '/tracing/d' src/libs/libs.pro tests/auto/auto.pro || die fi @@ -170,7 +170,7 @@ src_prepare() { sed -i -e "/^LANGUAGES\s*=/s:=.*:=${languages}:" share/qtcreator/translations/translations.pro || die # remove bundled qbs - rm -rf src/shared/qbs || die + rm -r src/shared/qbs || die } src_configure() {