diff options
author | Francesco Riosa <vivo@gentoo.org> | 2006-02-01 18:10:10 +0000 |
---|---|---|
committer | Francesco Riosa <vivo@gentoo.org> | 2006-02-01 18:10:10 +0000 |
commit | b63d5952d051b2799a30de3f7ac1d39b1d2e3b39 (patch) | |
tree | e3257d00c63187cc4ca6b13bc455b16db811b972 /eclass/mysql_fx.eclass | |
parent | Mark 6.2.5.5 stable on ia64 #83542 (diff) | |
download | gentoo-2-b63d5952d051b2799a30de3f7ac1d39b1d2e3b39.tar.gz gentoo-2-b63d5952d051b2799a30de3f7ac1d39b1d2e3b39.tar.bz2 gentoo-2-b63d5952d051b2799a30de3f7ac1d39b1d2e3b39.zip |
fixed typo
Diffstat (limited to 'eclass/mysql_fx.eclass')
-rw-r--r-- | eclass/mysql_fx.eclass | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/eclass/mysql_fx.eclass b/eclass/mysql_fx.eclass index dbf83546a6f2..17431d137f77 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.7 2006/02/01 15:51:44 vivo Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql_fx.eclass,v 1.8 2006/02/01 18:10:10 vivo Exp $ # Author: Francesco Riosa <vivo at gentoo.org> # Maintainer: Francesco Riosa <vivo at gentoo.org> @@ -54,7 +54,8 @@ mysql_mv_patches() { local index_file="${1:-"${WORKDIR}/mysql-extras/index.txt"}" local my_ver="${2:-"${MYSQL_VERSION_ID}"}" local my_test_fx=${3:-"_mysql_test_patch_easy"} - local dsc=(), ndsc=0 i + local dsc ndsc=0 i + dsc=( ) # values for flags are (2^x): # 1 - one patch found @@ -66,7 +67,7 @@ mysql_mv_patches() { @patch\ *) ${my_test_fx} $flags "${pname}" \ && for (( i=0 ; $i < $ndsc ; i++ )) ; do einfo "> ${dsc[$i]}" ; done - flags=1 ; ndsc=0 ; dsc=() + flags=1 ; ndsc=0 ; dsc=( ) pname=${row#"@patch "} ;; @ver\ *) |