diff options
author | Thilo Bangert <bangert@gentoo.org> | 2007-03-02 19:36:19 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2007-03-02 19:36:19 +0000 |
commit | 4b9678fe65704468be285493346c3f84031d8b62 (patch) | |
tree | 2e0b934c97ec62951cfbb94a54df0c2577116362 /net-ftp/twoftpd/twoftpd-1.21.ebuild | |
parent | Stable on ppc wrt bug 163611 (diff) | |
download | gentoo-2-4b9678fe65704468be285493346c3f84031d8b62.tar.gz gentoo-2-4b9678fe65704468be285493346c3f84031d8b62.tar.bz2 gentoo-2-4b9678fe65704468be285493346c3f84031d8b62.zip |
set build variables correctly - fixes bug #168982
(Portage version: 2.1.2-r9)
Diffstat (limited to 'net-ftp/twoftpd/twoftpd-1.21.ebuild')
-rw-r--r-- | net-ftp/twoftpd/twoftpd-1.21.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-ftp/twoftpd/twoftpd-1.21.ebuild b/net-ftp/twoftpd/twoftpd-1.21.ebuild index 10076bcdb8a2..658646eb6b4c 100644 --- a/net-ftp/twoftpd/twoftpd-1.21.ebuild +++ b/net-ftp/twoftpd/twoftpd-1.21.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/twoftpd/twoftpd-1.21.ebuild,v 1.2 2007/02/23 19:27:54 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/twoftpd/twoftpd-1.21.ebuild,v 1.3 2007/03/02 19:36:19 bangert Exp $ inherit toolchain-funcs @@ -21,8 +21,8 @@ RDEPEND="sys-apps/ucspi-tcp >=net-libs/cvm-0.32" src_compile() { - echo "${D}/usr/sbin" > conf-bin - echo "${D}/usr/share/man" > conf-man + echo "/usr/sbin" > conf-bin + echo "/usr/share/man" > conf-man echo "$(tc-getCC) ${CFLAGS} -I/usr/include/bglibs" > conf-cc echo "$(tc-getCC) -s -L/usr/lib/bglibs" > conf-ld make || die "make failed" @@ -32,7 +32,7 @@ src_install() { dodir /usr/sbin dodir /usr/share/man/man1 - make install || die "install failed" + make install install_prefix="${D}" || die "install failed" dodoc ANNOUNCEMENT COPYING ChangeLog NEWS README TODO VERSION dodoc twoftpd.run twoftpd-log.run |