summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorJoshua Baergen <joshuabaergen@gentoo.org>2005-10-23 18:02:17 +0000
committerJoshua Baergen <joshuabaergen@gentoo.org>2005-10-23 18:02:17 +0000
commit6ff2d9e38e93ffde22289b677385a4609606cb51 (patch)
tree17cfeec885b7858a8b7e43daf0aa943bf70c8e07 /eclass
parentstable on x86 (diff)
downloadgentoo-2-6ff2d9e38e93ffde22289b677385a4609606cb51.tar.gz
gentoo-2-6ff2d9e38e93ffde22289b677385a4609606cb51.tar.bz2
gentoo-2-6ff2d9e38e93ffde22289b677385a4609606cb51.zip
Add elibtoolize to fix shared lib problems on MIPS, fBSD, etc...
Diffstat (limited to 'eclass')
-rw-r--r--eclass/x-modular.eclass8
1 files changed, 6 insertions, 2 deletions
diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass
index 7b48e759b3c8..b585d4d7fb3b 100644
--- a/eclass/x-modular.eclass
+++ b/eclass/x-modular.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.15 2005/10/20 06:58:58 spyderous Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.16 2005/10/23 18:02:17 joshuabaergen Exp $
#
# Author: Donnie Berkholz <spyderous@gentoo.org>
#
@@ -12,7 +12,7 @@
EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst
-inherit eutils
+inherit eutils libtool
# Directory prefix to use for everything
XDIR="/usr"
@@ -63,6 +63,10 @@ RDEPEND="${RDEPEND}
x-modular_unpack_source() {
unpack ${A}
cd ${S}
+
+ # Joshua Baergen - October 23, 2005
+ # Fix shared lib issues on MIPS, FBSD, etc etc
+ elibtoolize
}
x-modular_patch_source() {