diff options
author | Brian Evans <grknight@gentoo.org> | 2017-02-22 11:26:39 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2017-02-22 11:26:39 -0500 |
commit | b5944645a6fd8b8dc9eb3c6e4a90176b582f0467 (patch) | |
tree | 24a216b86e05dd4f5c4e617d6af9f4a7c8ddb497 /eclass/mysql-v2.eclass | |
parent | dev-python/hacking: x86 stable wrt bug #606078 (diff) | |
download | gentoo-b5944645a6fd8b8dc9eb3c6e4a90176b582f0467.tar.gz gentoo-b5944645a6fd8b8dc9eb3c6e4a90176b582f0467.tar.bz2 gentoo-b5944645a6fd8b8dc9eb3c6e4a90176b582f0467.zip |
mysql*.eclass: remove built_with_use function in pkg_config
Diffstat (limited to 'eclass/mysql-v2.eclass')
-rw-r--r-- | eclass/mysql-v2.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/mysql-v2.eclass b/eclass/mysql-v2.eclass index 556d37eba6ef..ddb28654b498 100644 --- a/eclass/mysql-v2.eclass +++ b/eclass/mysql-v2.eclass @@ -699,7 +699,7 @@ mysql-v2_pkg_config() { [[ -z "${MY_DATADIR}" ]] && die "Sorry, unable to find MY_DATADIR" - if built_with_use ${CATEGORY}/${PN} minimal ; then + if [[ ! -x "${EROOT}/usr/sbin/mysqld" ]] ; then die "Minimal builds do NOT include the MySQL server" fi |