diff options
author | Thilo Bangert <bangert@gentoo.org> | 2007-02-23 19:27:54 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2007-02-23 19:27:54 +0000 |
commit | 6fe8e6d6169fa97b01272e7caf3e71663ab4a7f1 (patch) | |
tree | 1c5bbeed50980a941fc179fecb2ea5d9f50a7c9e /net-ftp/twoftpd/twoftpd-1.21.ebuild | |
parent | Bump (diff) | |
download | gentoo-2-6fe8e6d6169fa97b01272e7caf3e71663ab4a7f1.tar.gz gentoo-2-6fe8e6d6169fa97b01272e7caf3e71663ab4a7f1.tar.bz2 gentoo-2-6fe8e6d6169fa97b01272e7caf3e71663ab4a7f1.zip |
fix ROOT misuse
(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 c55f36b2bb98..10076bcdb8a2 100644 --- a/net-ftp/twoftpd/twoftpd-1.21.ebuild +++ b/net-ftp/twoftpd/twoftpd-1.21.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# 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.1 2006/05/14 15:49:00 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/twoftpd/twoftpd-1.21.ebuild,v 1.2 2007/02/23 19:27:54 bangert Exp $ inherit toolchain-funcs @@ -23,8 +23,8 @@ RDEPEND="sys-apps/ucspi-tcp src_compile() { echo "${D}/usr/sbin" > conf-bin echo "${D}/usr/share/man" > conf-man - echo "$(tc-getCC) ${CFLAGS} -I${ROOT}/usr/include/bglibs" > conf-cc - echo "$(tc-getCC) -s -L${ROOT}/usr/lib/bglibs" > conf-ld + echo "$(tc-getCC) ${CFLAGS} -I/usr/include/bglibs" > conf-cc + echo "$(tc-getCC) -s -L/usr/lib/bglibs" > conf-ld make || die "make failed" } |