diff options
author | 2008-08-08 09:44:59 +0000 | |
---|---|---|
committer | 2008-08-08 09:44:59 +0000 | |
commit | c861dcf5c09c77573e0872c96bbbf8b26c08d0c5 (patch) | |
tree | 0f3f6f67214ffd4cbd4092a126c3c53098b01569 /apps/dev-libs/dnmalloc/dnmalloc-1.0.ebuild | |
parent | Fixx. (diff) | |
download | chtekk-c861dcf5c09c77573e0872c96bbbf8b26c08d0c5.tar.gz chtekk-c861dcf5c09c77573e0872c96bbbf8b26c08d0c5.tar.bz2 chtekk-c861dcf5c09c77573e0872c96bbbf8b26c08d0c5.zip |
Fix install.
svn path=/; revision=95
Diffstat (limited to 'apps/dev-libs/dnmalloc/dnmalloc-1.0.ebuild')
-rw-r--r-- | apps/dev-libs/dnmalloc/dnmalloc-1.0.ebuild | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/dev-libs/dnmalloc/dnmalloc-1.0.ebuild b/apps/dev-libs/dnmalloc/dnmalloc-1.0.ebuild index 50e61a2..5098605 100644 --- a/apps/dev-libs/dnmalloc/dnmalloc-1.0.ebuild +++ b/apps/dev-libs/dnmalloc/dnmalloc-1.0.ebuild @@ -2,8 +2,6 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -inherit multilib - KEYWORDS="~amd64 ~x86" DESCRIPTION="Safer memory allocator." @@ -17,11 +15,9 @@ DEPEND="" RDEPEND="" src_compile() { - sed -e "s|/usr/local/lib|${D}/usr/$(get_libdir)|g" -i Makefile - dodir /usr/$(get_libdir) emake || die "emake failed" } src_install() { - emake install || die "emake install failed" + dolib "lib${PN}.so"* } |