diff options
author | Francesco Riosa <vivo@gentoo.org> | 2006-03-10 18:39:57 +0000 |
---|---|---|
committer | Francesco Riosa <vivo@gentoo.org> | 2006-03-10 18:39:57 +0000 |
commit | 8105b4071a5a477ebce94f32a8e6af04904ec668 (patch) | |
tree | ec9742cab069181c1898841df73c6c5f29e01a59 /dev-db/mysql | |
parent | Bug 125320 (diff) | |
download | gentoo-2-8105b4071a5a477ebce94f32a8e6af04904ec668.tar.gz gentoo-2-8105b4071a5a477ebce94f32a8e6af04904ec668.tar.bz2 gentoo-2-8105b4071a5a477ebce94f32a8e6af04904ec668.zip |
fix typo, bug#125709, thanks Martin Mokrejs
(Portage version: 2.1_pre5-r4)
Diffstat (limited to 'dev-db/mysql')
-rw-r--r-- | dev-db/mysql/ChangeLog | 6 | ||||
-rw-r--r-- | dev-db/mysql/mysql-4.1.16.ebuild | 5 | ||||
-rw-r--r-- | dev-db/mysql/mysql-5.0.18.ebuild | 5 |
3 files changed, 11 insertions, 5 deletions
diff --git a/dev-db/mysql/ChangeLog b/dev-db/mysql/ChangeLog index 497fbc59df17..09d7f30bb4b7 100644 --- a/dev-db/mysql/ChangeLog +++ b/dev-db/mysql/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-db/mysql # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.306 2006/03/09 14:00:20 vivo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/ChangeLog,v 1.307 2006/03/10 18:39:57 vivo Exp $ + + 10 Mar 2006; Francesco Riosa <vivo@gentoo.org> mysql-4.1.16.ebuild, + mysql-5.0.18.ebuild: + Fixed typo in variable declaration, thanks Martin Mokrejs, fix bug #125709 *mysql-5.0.19 (09 Mar 2006) *mysql-5.0.18-r60 (09 Mar 2006) diff --git a/dev-db/mysql/mysql-4.1.16.ebuild b/dev-db/mysql/mysql-4.1.16.ebuild index 50d14c1199b1..4fd4277938e2 100644 --- a/dev-db/mysql/mysql-4.1.16.ebuild +++ b/dev-db/mysql/mysql-4.1.16.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-4.1.16.ebuild,v 1.8 2006/02/18 11:35:44 vivo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-4.1.16.ebuild,v 1.9 2006/03/10 18:39:57 vivo Exp $ # helper function, version (integer) may have section separated by dots # for readbility @@ -103,7 +103,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 diff --git a/dev-db/mysql/mysql-5.0.18.ebuild b/dev-db/mysql/mysql-5.0.18.ebuild index f6a8ac6c9fce..432369992981 100644 --- a/dev-db/mysql/mysql-5.0.18.ebuild +++ b/dev-db/mysql/mysql-5.0.18.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.18.ebuild,v 1.5 2006/02/18 11:35:44 vivo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.18.ebuild,v 1.6 2006/03/10 18:39:57 vivo Exp $ # helper function, version (integer) may have section separated by dots # for readbility @@ -103,7 +103,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 |