summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2010-03-15 19:05:51 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2010-03-15 19:05:51 +0000
commit1a36a9eb4e6caa3bf3ea0df8b5b5563540761c6c (patch)
tree8b3ef296d9695b870f246cce96b176ba9c403f06 /eclass/mysql.eclass
parentppc stable #308549 (diff)
downloadgentoo-2-1a36a9eb4e6caa3bf3ea0df8b5b5563540761c6c.tar.gz
gentoo-2-1a36a9eb4e6caa3bf3ea0df8b5b5563540761c6c.tar.bz2
gentoo-2-1a36a9eb4e6caa3bf3ea0df8b5b5563540761c6c.zip
Bug #308491: Fix PBXT install location and econf usage.
Diffstat (limited to 'eclass/mysql.eclass')
-rw-r--r--eclass/mysql.eclass7
1 files changed, 3 insertions, 4 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass
index 75935167ca93..7f142c1b24bd 100644
--- a/eclass/mysql.eclass
+++ b/eclass/mysql.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.137 2010/03/15 18:50:43 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.138 2010/03/15 19:05:51 robbat2 Exp $
# @ECLASS: mysql.eclass
# @MAINTAINER:
@@ -591,10 +591,9 @@ pbxt_src_configure() {
AT_GNUCONF_UPDATE="yes" eautoreconf
local myconf=""
- myconf="${myconf} --with-mysql=${S} --libdir=${MY_LIBDIR}"
+ myconf="${myconf} --with-mysql=${S} --libdir=/usr/$(get_libdir)"
use debug && myconf="${myconf} --with-debug=full"
- # TODO: is it safe/needed to use econf here ?
- ./configure ${myconf} || die "Problem configuring PBXT storage engine"
+ econf ${myconf} || die "Problem configuring PBXT storage engine"
}
pbxt_src_compile() {