summaryrefslogtreecommitdiff
path: root/eclass
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
commitf45bed67545d1502f3b69d99dca36a2fc6f8cadc (patch)
treebd761c8c46840244020f96d45697f5fd4040f00d /eclass
parentInitial import. Ebuild submitted by Alex Linke <incubation.11@freenet.de> to... (diff)
downloadhistorical-f45bed67545d1502f3b69d99dca36a2fc6f8cadc.tar.gz
historical-f45bed67545d1502f3b69d99dca36a2fc6f8cadc.tar.bz2
historical-f45bed67545d1502f3b69d99dca36a2fc6f8cadc.zip
forgot to elibtoolize. oops.
Diffstat (limited to '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
}