diff options
author | 2008-05-29 19:36:57 +0000 | |
---|---|---|
committer | 2008-05-29 19:36:57 +0000 | |
commit | 79e7c636981b59faef12f4963f4a9073059f6973 (patch) | |
tree | 429bada511b68e197a909f094824915922ff3f48 /dev-db/mysql/mysql-5.0.54.ebuild | |
parent | Make FEATURES=-userpriv test non-fatal during pkg_setup, as portage always ru... (diff) | |
download | gentoo-2-79e7c636981b59faef12f4963f4a9073059f6973.tar.gz gentoo-2-79e7c636981b59faef12f4963f4a9073059f6973.tar.bz2 gentoo-2-79e7c636981b59faef12f4963f4a9073059f6973.zip |
Convert all all FEATURES=userpriv tests to be UID -eq 0 to make Paludis et al happy.
(Portage version: 2.1.5.2)
Diffstat (limited to 'dev-db/mysql/mysql-5.0.54.ebuild')
-rw-r--r-- | dev-db/mysql/mysql-5.0.54.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-db/mysql/mysql-5.0.54.ebuild b/dev-db/mysql/mysql-5.0.54.ebuild index de3a4c153b63..c7ae5c7d3877 100644 --- a/dev-db/mysql/mysql-5.0.54.ebuild +++ b/dev-db/mysql/mysql-5.0.54.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.54.ebuild,v 1.10 2008/01/28 07:06:09 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/mysql-5.0.54.ebuild,v 1.11 2008/05/29 19:36:57 robbat2 Exp $ MY_EXTRAS_VER="20080124" SERVER_URI="http://mirror.provenscaling.com/mysql/enterprise/source/5.0/${P}.tar.gz" @@ -16,7 +16,7 @@ EPATCH_EXCLUDE='' src_test() { make check || die "make check failed" if ! use "minimal" ; then - if ! hasq "userpriv" ${FEATURES} ; then + if [[ $UID -eq 0 ]]; then die "Testing with FEATURES=-userpriv is no longer supported by upstream" fi cd "${S}" |