diff options
author | 2006-03-10 11:41:39 +0000 | |
---|---|---|
committer | 2006-03-10 11:41:39 +0000 | |
commit | 3dfa1992234759c7a7e0cb16006e2a411f835fa8 (patch) | |
tree | ac28898e2f7583de7d3bc829259127dfc693801e /eclass/mysql_fx.eclass | |
parent | Stable on arm; bug #125217 (diff) | |
download | gentoo-2-3dfa1992234759c7a7e0cb16006e2a411f835fa8.tar.gz gentoo-2-3dfa1992234759c7a7e0cb16006e2a411f835fa8.tar.bz2 gentoo-2-3dfa1992234759c7a7e0cb16006e2a411f835fa8.zip |
re-add symlinking of libraryes for un-slotted (screwed before)
Diffstat (limited to 'eclass/mysql_fx.eclass')
-rw-r--r-- | eclass/mysql_fx.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mysql_fx.eclass b/eclass/mysql_fx.eclass index 17431d137f77..076ac3074898 100644 --- a/eclass/mysql_fx.eclass +++ b/eclass/mysql_fx.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql_fx.eclass,v 1.8 2006/02/01 18:10:10 vivo Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql_fx.eclass,v 1.9 2006/03/10 11:41:39 vivo Exp $ # Author: Francesco Riosa <vivo at gentoo.org> # Maintainer: Francesco Riosa <vivo at gentoo.org> @@ -114,7 +114,7 @@ mysql_version_is_at_least() { # THERE IS A COPY OF THIS ONE IN ESELECT-MYSQL, keep the two synced mysql_make_file_list() { local items= left=0 - items=$( ls -d ${1}-[[:digit:]][[:digit:]][[:digit:]] ) + items=$( ls -d ${1}-[[:digit:]][[:digit:]][[:digit:]] 2>/dev/null ) while [[ ${left} -lt ${#items[@]} ]] ; do local lowest_idx=${left} |