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 1R6fqh-0001P2-WD for garchives@archives.gentoo.org; Thu, 22 Sep 2011 09:45:44 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7A7821C0F9; Thu, 22 Sep 2011 09:45:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id AA65621C0F9 for ; Thu, 22 Sep 2011 09:45:36 +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 403C11B4007 for ; Thu, 22 Sep 2011 09:45:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 92B4480042 for ; Thu, 22 Sep 2011 09:45:35 +0000 (UTC) From: "Jorge Manuel B. S. Vicetto" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jorge Manuel B. S. Vicetto" Message-ID: <88f67b31b60d1eade24534d908c4b7d384a8fe76.jmbsvicetto@gentoo> Subject: [gentoo-commits] proj/mysql:master commit in: eclass/ X-VCS-Repository: proj/mysql X-VCS-Files: eclass/mysql_fx.eclass X-VCS-Directories: eclass/ X-VCS-Committer: jmbsvicetto X-VCS-Committer-Name: Jorge Manuel B. S. Vicetto X-VCS-Revision: 88f67b31b60d1eade24534d908c4b7d384a8fe76 Date: Thu, 22 Sep 2011 09:45:35 +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: dabe0f8718bcd5878bf149f66d11fe53 commit: 88f67b31b60d1eade24534d908c4b7d384a8fe76 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) ge= ntoo org> AuthorDate: Thu Sep 22 09:44:08 2011 +0000 Commit: Jorge Manuel B. S. Vicetto gentoo org= > CommitDate: Thu Sep 22 09:44:08 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/mysql.git;a=3D= commit;h=3D88f67b31 Limit the creation of symlinks to the libdir so not to link to plugins. --- eclass/mysql_fx.eclass | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/eclass/mysql_fx.eclass b/eclass/mysql_fx.eclass index fa7376c..afadab1 100644 --- a/eclass/mysql_fx.eclass +++ b/eclass/mysql_fx.eclass @@ -199,7 +199,7 @@ mysql_lib_symlinks() { =20 # waste some time in removing and recreating symlinks for d in $dirlist ; do - for libname in $( find "${d}" -name "*${libsuffix}*" -and -not -type "= l" 2>/dev/null ) ; do + for libname in $( find "${d}" -mindepth 1 -maxdepth 1 -name "*${libsuf= fix}*" -and -not -type "l" 2>/dev/null ) ; do # maxdot is a limit versus infinite loop maxdots=3D0 libnameln=3D${libname##*/}