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 1RCgMa-0003Zg-J3 for garchives@archives.gentoo.org; Sat, 08 Oct 2011 23:31:28 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F6B721C104; Sat, 8 Oct 2011 23:31:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2620C21C104 for ; Sat, 8 Oct 2011 23:31:21 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 78BCF1B4010 for ; Sat, 8 Oct 2011 23:31:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id D6F9580042 for ; Sat, 8 Oct 2011 23:31:19 +0000 (UTC) From: "Markus Meier" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Markus Meier" Message-ID: Subject: [gentoo-commits] dev/maekke:master commit in: scripts/ X-VCS-Repository: dev/maekke X-VCS-Files: scripts/rdep X-VCS-Directories: scripts/ X-VCS-Committer: maekke X-VCS-Committer-Name: Markus Meier X-VCS-Revision: c2495a8d1603d5de8bbedb2cd27267ac1e083df9 Date: Sat, 8 Oct 2011 23:31:19 +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: X-Archives-Hash: fe9428996eeef41fbc4283f694ecce5a commit: c2495a8d1603d5de8bbedb2cd27267ac1e083df9 Author: Markus Meier gentoo org> AuthorDate: Sat Oct 8 23:32:16 2011 +0000 Commit: Markus Meier gentoo org> CommitDate: Sat Oct 8 23:32:16 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/maekke.git;a=3D= commit;h=3Dc2495a8d replace all negative use flags --- scripts/rdep | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/rdep b/scripts/rdep index bf0688f..f7380b2 100755 --- a/scripts/rdep +++ b/scripts/rdep @@ -53,7 +53,7 @@ for p in $(grep -v '^[B]' ${tmp}); do # negative use deps are !use and no -use # multiple use-deps are separated by '+' if [[ -n ${use} ]]; then - use=3D"${use/!/-}" + use=3D"${use//!/-}" use=3D"${use//+/,}" fi =20