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 1REbS8-0003TU-La for garchives@archives.gentoo.org; Fri, 14 Oct 2011 06:41:08 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5CC7E21C03B; Fri, 14 Oct 2011 06:41:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 32ABE21C03B for ; Fri, 14 Oct 2011 06:41:01 +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 8A0BF1B4035 for ; Fri, 14 Oct 2011 06:41:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id D839380042 for ; Fri, 14 Oct 2011 06:40:59 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <350f7536df5528cf12baf140e71f899c439fdb3f.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/package/ebuild/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/package/ebuild/doebuild.py X-VCS-Directories: pym/portage/package/ebuild/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 350f7536df5528cf12baf140e71f899c439fdb3f Date: Fri, 14 Oct 2011 06:40:59 +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: e842938e3ad2445c7271297374075c46 commit: 350f7536df5528cf12baf140e71f899c439fdb3f Author: Zac Medico gentoo org> AuthorDate: Fri Oct 14 06:40:02 2011 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Oct 14 06:40:02 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D350f7536 Fix inverted QA_SONAME_NO_SYMLINK logic. --- pym/portage/package/ebuild/doebuild.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/portage/package/ebuild/doebuild.py b/pym/portage/package= /ebuild/doebuild.py index 38f012f..e479159 100644 --- a/pym/portage/package/ebuild/doebuild.py +++ b/pym/portage/package/ebuild/doebuild.py @@ -1889,7 +1889,7 @@ def _post_src_install_soname_symlinks(mysettings, o= ut): continue if not is_libdir(os.path.dirname(obj)): continue - if qa_no_symlink and qa_no_symlink.match(obj.strip(os.sep)) is None: + if qa_no_symlink and qa_no_symlink.match(obj.strip(os.sep)) is not Non= e: continue =20 obj_file_path =3D os.path.join(image_dir, obj.lstrip(os.sep))