From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-833717-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 77943138454 for <garchives@archives.gentoo.org>; Fri, 11 Sep 2015 00:17:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 809D4E07A7; Fri, 11 Sep 2015 00:17:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CA707E0384 for <gentoo-commits@lists.gentoo.org>; Fri, 11 Sep 2015 00:17:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B67F434084A for <gentoo-commits@lists.gentoo.org>; Fri, 11 Sep 2015 00:17:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7514170 for <gentoo-commits@lists.gentoo.org>; Fri, 11 Sep 2015 00:17:13 +0000 (UTC) From: "Alexandre Rostovtsev" <tetromino@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexandre Rostovtsev" <tetromino@gentoo.org> Message-ID: <1441930568.2972c432dcd6488f548e8ca467ec5befa8248004.tetromino@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/orc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/orc/orc-0.4.24.ebuild X-VCS-Directories: dev-lang/orc/ X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Rostovtsev X-VCS-Revision: 2972c432dcd6488f548e8ca467ec5befa8248004 X-VCS-Branch: master Date: Fri, 11 Sep 2015 00:17:13 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9cd54461-b6c0-4189-9eca-2f4386f00f5d X-Archives-Hash: 865e5952d4ba00acec8e5681306dbf13 commit: 2972c432dcd6488f548e8ca467ec5befa8248004 Author: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org> AuthorDate: Fri Sep 11 00:15:49 2015 +0000 Commit: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org> CommitDate: Fri Sep 11 00:16:08 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2972c432 dev-lang/orc: fix pax-mark calls and make them non-fatal Gentoo-Bug: 560126 Reported-by: orionbelt2, Thomas Beutin Package-Manager: portage-2.2.20.1 dev-lang/orc/orc-0.4.24.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-lang/orc/orc-0.4.24.ebuild b/dev-lang/orc/orc-0.4.24.ebuild index c56d33c..80fe7b3 100644 --- a/dev-lang/orc/orc-0.4.24.ebuild +++ b/dev-lang/orc/orc-0.4.24.ebuild @@ -41,9 +41,9 @@ src_configure() { src_install() { autotools-multilib_src_install if use hardened; then - pax-mark m usr/bin/orc-bugreport || die - pax-mark m usr/bin/orcc || die - pax-mark m usr/$(get_libdir)/liborc*.so* || die + pax-mark m "${ED}"usr/bin/orc-bugreport + pax-mark m "${ED}"usr/bin/orcc + pax-mark m "${ED}"usr/$(get_libdir)/liborc*.so* fi }