diff options
author | 2010-12-07 17:18:55 +0000 | |
---|---|---|
committer | 2010-12-07 17:18:55 +0000 | |
commit | c47d241cfed6d4da9b60633f8716f1d2876a3031 (patch) | |
tree | c011827f2398289f752bac81d269bb8a0f943750 /dev-tcltk | |
parent | Respect LDFLAGS (diff) | |
download | historical-c47d241cfed6d4da9b60633f8716f1d2876a3031.tar.gz historical-c47d241cfed6d4da9b60633f8716f1d2876a3031.tar.bz2 historical-c47d241cfed6d4da9b60633f8716f1d2876a3031.zip |
Correctly fix the Multilib problem
Package-Manager: portage-2.2.0_alpha7/cvs/Linux x86_64
Diffstat (limited to 'dev-tcltk')
-rw-r--r-- | dev-tcltk/tcldom/tcldom-3.1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-tcltk/tcldom/tcldom-3.1.ebuild b/dev-tcltk/tcldom/tcldom-3.1.ebuild index 2473104bfb4a..678ef4fda09f 100644 --- a/dev-tcltk/tcldom/tcldom-3.1.ebuild +++ b/dev-tcltk/tcldom/tcldom-3.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcldom/tcldom-3.1.ebuild,v 1.5 2010/12/07 17:01:46 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcldom/tcldom-3.1.ebuild,v 1.6 2010/12/07 17:18:55 jlec Exp $ inherit eutils multilib toolchain-funcs @@ -46,12 +46,12 @@ src_compile() { if use xml ; then cd "${S}/src-libxml2" - econf ${myconf} + econf ${myconf} --with-libxml2-lib=/usr/$(get_libdir) emake || die fi if use expat ; then cd "${S}/src" - econf ${myconf} --with-libxml2-lib=/usr/$(get_libdir) + econf ${myconf} emake || die fi } |