diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2007-08-07 18:30:04 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2007-08-07 18:30:04 +0000 |
commit | 008a1de491e49e8de614f825fa0a35dc08531957 (patch) | |
tree | 548d63feefb66f0c70c97137f5c1c51a35bb574e /eclass | |
parent | Fix SRC_URI wrt bug #187755. (diff) | |
download | historical-008a1de491e49e8de614f825fa0a35dc08531957.tar.gz historical-008a1de491e49e8de614f825fa0a35dc08531957.tar.bz2 historical-008a1de491e49e8de614f825fa0a35dc08531957.zip |
Added multilib-strict fix for AMD64 as suggested by Jeffrey Gardner <je_fro@gentoo.org>.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/embassy.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/embassy.eclass b/eclass/embassy.eclass index 24a855a44a48..34ad58f1392c 100644 --- a/eclass/embassy.eclass +++ b/eclass/embassy.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/embassy.eclass,v 1.14 2007/07/19 13:21:07 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/embassy.eclass,v 1.15 2007/08/07 18:30:04 ribosome Exp $ # Author Olivier Fisette <ribosome@gentoo.org> @@ -63,6 +63,7 @@ embassy_src_compile() { --datadir=/usr/share \ --sysconfdir=/etc \ --localstatedir=/var/lib \ + --libdir=/usr/$(get_libdir) \ ${EXTRA_CONF} || die emake || die "Before reporting this error as a bug, please make sure you compiled EMBOSS and the EMBASSY packages with the same \"USE\" flags. Failure to @@ -73,7 +74,7 @@ embassy_src_compile() { } embassy_src_install() { - einstall || die + emake DESTDIR="${D}" install || die "Install failed" dodoc AUTHORS ChangeLog NEWS README } |