From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id ABC771381F3 for ; Mon, 15 Apr 2013 03:23:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 240C1E07EB; Mon, 15 Apr 2013 03:23:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4F583E07EB for ; Mon, 15 Apr 2013 03:23:16 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 392B033D8A3 for ; Mon, 15 Apr 2013 03:23:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id BE72EE4308 for ; Mon, 15 Apr 2013 03:23:13 +0000 (UTC) From: "Jorge Manuel B. S. Vicetto" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jorge Manuel B. S. Vicetto" Message-ID: <1365996154.f6ad384914a00099eea2a0f66232728c479ec628.jmbsvicetto@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: / X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst X-VCS-Directories: / X-VCS-Committer: jmbsvicetto X-VCS-Committer-Name: Jorge Manuel B. S. Vicetto X-VCS-Revision: f6ad384914a00099eea2a0f66232728c479ec628 X-VCS-Branch: master Date: Mon, 15 Apr 2013 03:23:13 +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: ba5184b9-c90c-4967-9a32-d2dae22c95be X-Archives-Hash: 3696cb8d492f18620befe3af75e988d3 commit: f6ad384914a00099eea2a0f66232728c479ec628 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) gentoo org> AuthorDate: Mon Apr 15 03:22:34 2013 +0000 Commit: Jorge Manuel B. S. Vicetto gentoo org> CommitDate: Mon Apr 15 03:22:34 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=f6ad3849 Fix broken "preserve_libs" commit - ";" is not ":". --- catalyst | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/catalyst b/catalyst index d211b99..5575d7a 100755 --- a/catalyst +++ b/catalyst @@ -147,7 +147,8 @@ def parse_config(myconfig): if "pkgcache" in string.split(conf_values["options"]): print "Package cache support enabled." conf_values["PKGCACHE"]="1" - if "preserve_libs" in string.split(conf_values["options"]); + + if "preserve_libs" in string.split(conf_values["options"]): print "Preserving libs during unmerge." conf_values["PRESERVE_LIBS"]="1"