diff options
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mysql-cmake.eclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/eclass/mysql-cmake.eclass b/eclass/mysql-cmake.eclass index 41cf20a5feea..548bbd3c2c69 100644 --- a/eclass/mysql-cmake.eclass +++ b/eclass/mysql-cmake.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-cmake.eclass,v 1.16 2013/06/26 19:31:49 jmbsvicetto Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql-cmake.eclass,v 1.17 2013/06/27 17:23:33 jmbsvicetto Exp $ # @ECLASS: mysql-cmake.eclass # @MAINTAINER: @@ -407,6 +407,11 @@ mysql-cmake_src_install() { done fi + cat <<-EOF > "${T}"/80mysql-libdir + LDPATH="${EPREFIX}/usr/$(get_libdir)/mysql" + EOF + doenvd "${T}"/80mysql-libdir + #Remove mytop if perl is not selected [[ ${PN} == "mariadb" ]] && ! use perl \ && rm -f "${ED}/usr/bin/mytop" |