summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Tilley <lv@gentoo.org>2004-09-21 22:46:11 +0000
committerTravis Tilley <lv@gentoo.org>2004-09-21 22:46:11 +0000
commit3927a9d8101463f4dc9f0cafdfe6712b9e3e1b43 (patch)
treeba8f2a88e3833e09eec13f0fc52a39510342cc27 /eclass/toolchain.eclass
parentInitial import. Ebuild submitted by Alex Linke <incubation.11@freenet.de> to... (diff)
downloadgentoo-2-3927a9d8101463f4dc9f0cafdfe6712b9e3e1b43.tar.gz
gentoo-2-3927a9d8101463f4dc9f0cafdfe6712b9e3e1b43.tar.bz2
gentoo-2-3927a9d8101463f4dc9f0cafdfe6712b9e3e1b43.zip
forgot to elibtoolize. oops.
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r--eclass/toolchain.eclass8
1 files changed, 6 insertions, 2 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 4b2668612c2f..5f56e2f272ba 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -1,11 +1,11 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.17 2004/09/15 18:05:24 lv Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.18 2004/09/21 22:46:11 lv Exp $
#
# This eclass should contain general toolchain-related functions that are
# expected to not change, or change much.
-inherit eutils versionator
+inherit eutils versionator libtool
ECLASS=toolchain
INHERITED="$INHERITED $ECLASS"
DESCRIPTION="Based on the ${ECLASS} eclass"
@@ -321,6 +321,10 @@ gcc_quick_unpack() {
unpack ${PIE_CORE}
fi
+ # Fixup libtool to correctly generate .la files with portage
+ cd ${S}
+ elibtoolize --portage --shallow
+
popd > /dev/null
}