diff options
author | George Shapovalov <george@gentoo.org> | 2002-08-09 20:31:42 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2002-08-09 20:31:42 +0000 |
commit | 3ab05b4fda949b6d5dddb98391ba4b639ee631b9 (patch) | |
tree | a6de3132e9d0ed40f974fce9909763a9779fdced /net-misc/omniORB | |
parent | tested ghc, unmasking (diff) | |
download | gentoo-2-3ab05b4fda949b6d5dddb98391ba4b639ee631b9.tar.gz gentoo-2-3ab05b4fda949b6d5dddb98391ba4b639ee631b9.tar.bz2 gentoo-2-3ab05b4fda949b6d5dddb98391ba4b639ee631b9.zip |
fixed the issue ldconfig was complaining about
Diffstat (limited to 'net-misc/omniORB')
-rw-r--r-- | net-misc/omniORB/omniORB-305.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net-misc/omniORB/omniORB-305.ebuild b/net-misc/omniORB/omniORB-305.ebuild index a9de7b424ce9..13624a551ca4 100644 --- a/net-misc/omniORB/omniORB-305.ebuild +++ b/net-misc/omniORB/omniORB-305.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-305.ebuild,v 1.4 2002/08/08 18:27:55 phoenix Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-305.ebuild,v 1.5 2002/08/09 20:31:42 george Exp $ S="${WORKDIR}/omni" DESCRIPTION="a robust, high-performance CORBA 2 ORB" @@ -70,7 +70,11 @@ src_install () { dodir /usr/lib/python2.2/site-packages cp -af lib/${PLT}/_* ${D}/usr/lib/python2.2/site-packages - dolib lib/${PLT}/*.{a,so*} + #well, this looks like the situation where cp will work better than dolib: + #during the build symlinks are already getting created + #dolib copies them over as files and ldconfig complains + cp -d lib/${PLT}/*.{a,so*} ${D}/usr/lib/ + #dolib lib/${PLT}/*.{a,so*} rm ${D}/usr/lib/_*.* exeinto /usr/lib/python2.2/site-packages |