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 1RV44r-0005uU-OC for garchives@archives.gentoo.org; Mon, 28 Nov 2011 16:29:09 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A08321C070; Mon, 28 Nov 2011 16:28:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 562C521C070 for ; Mon, 28 Nov 2011 16:28:57 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D162B1B4016 for ; Mon, 28 Nov 2011 16:28:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 45D7980044 for ; Mon, 28 Nov 2011 16:28:56 +0000 (UTC) From: "Jeremy Olexa" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeremy Olexa" Message-ID: <5e2c06613c05ad4f116cc8e1365a8f9297914492.darkside@gentoo> Subject: [gentoo-commits] dev/darkside:master commit in: dev-util/catalyst/ X-VCS-Repository: dev/darkside X-VCS-Files: dev-util/catalyst/catalyst-2.0.7.1.ebuild X-VCS-Directories: dev-util/catalyst/ X-VCS-Committer: darkside X-VCS-Committer-Name: Jeremy Olexa X-VCS-Revision: 5e2c06613c05ad4f116cc8e1365a8f9297914492 Date: Mon, 28 Nov 2011 16:28:56 +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: 87ba2e5f-3e1e-44d4-80c6-ca26da23bbb7 X-Archives-Hash: eec42dd3d57ac3c1746f27971905d917 commit: 5e2c06613c05ad4f116cc8e1365a8f9297914492 Author: Jeremy Olexa gentoo org> AuthorDate: Mon Nov 28 16:28:50 2011 +0000 Commit: Jeremy Olexa gentoo org> CommitDate: Mon Nov 28 16:28:50 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/darkside.git;a= =3Dcommit;h=3D5e2c0661 [dev-util/catalyst] use if block --- dev-util/catalyst/catalyst-2.0.7.1.ebuild | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-util/catalyst/catalyst-2.0.7.1.ebuild b/dev-util/catalys= t/catalyst-2.0.7.1.ebuild index 47fba61..de529f1 100644 --- a/dev-util/catalyst/catalyst-2.0.7.1.ebuild +++ b/dev-util/catalyst/catalyst-2.0.7.1.ebuild @@ -49,9 +49,9 @@ src_install() { dodoc README ChangeLog AUTHORS doman files/catalyst.1 # Here is where we actually enable ccache - use ccache && \ - sed -i -e 's:options=3D"autoresume kern:options=3D"autoresume ccache k= ern:' \ - /etc/catalyst/catalyst.conf || die + if use ccache; then + sed -i -e 's:options=3D"autoresume kern:options=3D"autoresume ccache k= ern:' /etc/catalyst/catalyst.conf || die + fi sed -i -e "s:/usr/lib/catalyst:/usr/$(get_libdir)/catalyst:" \ /etc/catalyst/catalyst.conf || die }