summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorOlivier Fisette <ribosome@gentoo.org>2007-08-07 18:30:04 +0000
committerOlivier Fisette <ribosome@gentoo.org>2007-08-07 18:30:04 +0000
commit9ae72d4a7da8e8b38b13422c62cfc21f71550ca6 (patch)
tree80c13bfcaf6fa56b8283f2b976d5ccfedc107f4e /eclass
parentStable on sparc wrt #176297 (diff)
downloadgentoo-2-9ae72d4a7da8e8b38b13422c62cfc21f71550ca6.tar.gz
gentoo-2-9ae72d4a7da8e8b38b13422c62cfc21f71550ca6.tar.bz2
gentoo-2-9ae72d4a7da8e8b38b13422c62cfc21f71550ca6.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.eclass5
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
}