diff options
author | Herbie Hopkins <herbs@gentoo.org> | 2005-05-25 19:51:10 +0000 |
---|---|---|
committer | Herbie Hopkins <herbs@gentoo.org> | 2005-05-25 19:51:10 +0000 |
commit | 115d30dcfc6f3741ccae9fc2f33bcbf6233995da (patch) | |
tree | 19fdf6f55b9e8b15bd29750791f4061d3f00000f /sys-fs/cryptsetup/cryptsetup-0.1-r1.ebuild | |
parent | clean old (diff) | |
download | gentoo-2-115d30dcfc6f3741ccae9fc2f33bcbf6233995da.tar.gz gentoo-2-115d30dcfc6f3741ccae9fc2f33bcbf6233995da.tar.bz2 gentoo-2-115d30dcfc6f3741ccae9fc2f33bcbf6233995da.zip |
Multilib fixes.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'sys-fs/cryptsetup/cryptsetup-0.1-r1.ebuild')
-rw-r--r-- | sys-fs/cryptsetup/cryptsetup-0.1-r1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys-fs/cryptsetup/cryptsetup-0.1-r1.ebuild b/sys-fs/cryptsetup/cryptsetup-0.1-r1.ebuild index 1f2d3428ae65..fece4177920e 100644 --- a/sys-fs/cryptsetup/cryptsetup-0.1-r1.ebuild +++ b/sys-fs/cryptsetup/cryptsetup-0.1-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/cryptsetup/cryptsetup-0.1-r1.ebuild,v 1.8 2005/05/24 22:48:32 strerror Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/cryptsetup/cryptsetup-0.1-r1.ebuild,v 1.9 2005/05/25 19:51:10 herbs Exp $ -inherit linux-info +inherit linux-info multilib DESCRIPTION="Tool to setup encrypted devices with dm-crypt" HOMEPAGE="http://www.saout.de/misc/dm-crypt/" @@ -45,10 +45,10 @@ src_compile() { econf --bindir=/bin --disable-nls || die sed -i \ - -e 's|-lgcrypt|/usr/lib/libgcrypt.a|' \ - -e 's|-lgpg-error|/usr/lib/libgpg-error.a|' \ + -e "s|-lgcrypt|/usr/$(get_libdir)/libgcrypt.a|" \ + -e "s|-lgpg-error|/usr/$(get_libdir)/libgpg-error.a|" \ Makefile src/Makefile - sed -i -e 's|-lpopt|/usr/lib/libpopt.a|' src/Makefile + sed -i -e "s|-lpopt|/usr/$(get_libdir)/libpopt.a|" src/Makefile emake || die } |