diff options
author | Travis Tilley <lv@gentoo.org> | 2004-09-12 17:42:33 +0000 |
---|---|---|
committer | Travis Tilley <lv@gentoo.org> | 2004-09-12 17:42:33 +0000 |
commit | b0620c20ef2d3dbaab51a8ee49acc68c23bde19a (patch) | |
tree | 0186987ac1cc51fe69d7a5f5ccc148ddcde84c7c /eclass | |
parent | ebuild cleanups (Manifest recommit) (diff) | |
download | gentoo-2-b0620c20ef2d3dbaab51a8ee49acc68c23bde19a.tar.gz gentoo-2-b0620c20ef2d3dbaab51a8ee49acc68c23bde19a.tar.bz2 gentoo-2-b0620c20ef2d3dbaab51a8ee49acc68c23bde19a.zip |
get_multilibdir()
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/eutils.eclass | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index dc15fc1f26be..ca6117a8e660 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.100 2004/09/12 07:16:45 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.101 2004/09/12 17:42:33 lv Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -64,6 +64,12 @@ get_libdir() { echo ${CONF_LIBDIR:=lib} } + +get_multilibdir() { + echo ${CONF_MULTILIBDIR:=lib32} +} + + # Sometimes you need to override the value returned by get_libdir. A good # example of this is xorg-x11, where lib32 isnt a supported configuration, # and where lib64 -must- be used on amd64 (for applications that need lib |