diff options
author | Brian Evans <grknight@gentoo.org> | 2015-09-18 11:05:11 -0400 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2015-09-18 11:05:11 -0400 |
commit | 8914b71eafa68f1dd6fc33d388275f9445bf9565 (patch) | |
tree | 84418dc569405a21ad064c6fe70d8e3d411d4417 /eclass/mysql-multilib.eclass | |
parent | Add --missing=true to built_with_use wrt bug 560732 (diff) | |
download | gentoo-8914b71eafa68f1dd6fc33d388275f9445bf9565.tar.gz gentoo-8914b71eafa68f1dd6fc33d388275f9445bf9565.tar.bz2 gentoo-8914b71eafa68f1dd6fc33d388275f9445bf9565.zip |
mysql-multilib.eclass: Fix syntax of previous commit removing the equals sign
Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'eclass/mysql-multilib.eclass')
-rw-r--r-- | eclass/mysql-multilib.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/mysql-multilib.eclass b/eclass/mysql-multilib.eclass index 2e73ccfb71d5..ff701df41d99 100644 --- a/eclass/mysql-multilib.eclass +++ b/eclass/mysql-multilib.eclass @@ -795,7 +795,7 @@ mysql-multilib_pkg_preinst() { if [[ -z ${REPLACING_VERSIONS} && -e "${EROOT}usr/$(get_libdir)/libmysqlclient.so" ]] ; then SHOW_ABI_MESSAGE=1 elif [[ ${REPLACING_VERSIONS} && -e "${EROOT}usr/$(get_libdir)/libmysqlclient.so" ]] && \ - in_iuse client-libs && ! built_with_use --missing=true ${CATEGORY}/${PN} client-libs ; then + in_iuse client-libs && ! built_with_use --missing true ${CATEGORY}/${PN} client-libs ; then SHOW_ABI_MESSAGE=1 fi |