diff options
author | Thilo Bangert <bangert@gentoo.org> | 2007-02-23 19:24:57 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2007-02-23 19:24:57 +0000 |
commit | cbc68d0fb3a9f22f15d2419069a1773b10739d87 (patch) | |
tree | ae8c618b42652789ef889c8183a4ec2dac8d375c /net-mail | |
parent | Fixed linux-mod eclass usage (diff) | |
download | gentoo-2-cbc68d0fb3a9f22f15d2419069a1773b10739d87.tar.gz gentoo-2-cbc68d0fb3a9f22f15d2419069a1773b10739d87.tar.bz2 gentoo-2-cbc68d0fb3a9f22f15d2419069a1773b10739d87.zip |
fix ROOT misuse
(Portage version: 2.1.2-r9)
Diffstat (limited to 'net-mail')
3 files changed, 11 insertions, 7 deletions
diff --git a/net-mail/qmail-autoresponder/ChangeLog b/net-mail/qmail-autoresponder/ChangeLog index c070847a3487..0ec6132e8b95 100644 --- a/net-mail/qmail-autoresponder/ChangeLog +++ b/net-mail/qmail-autoresponder/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-mail/qmail-autoresponder # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/qmail-autoresponder/ChangeLog,v 1.23 2007/02/22 16:00:23 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/qmail-autoresponder/ChangeLog,v 1.24 2007/02/23 19:24:57 bangert Exp $ + + 23 Feb 2007; Thilo Bangert <bangert@gentoo.org> + qmail-autoresponder-0.96.1-r1.ebuild, qmail-autoresponder-0.96.2.ebuild: + remove ROOT misuse 22 Feb 2007; Thilo Bangert <bangert@gentoo.org> qmail-autoresponder-0.96.1-r1.ebuild, qmail-autoresponder-0.96.2.ebuild: diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.96.1-r1.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-0.96.1-r1.ebuild index bae86f9f685d..a93b97c024e5 100644 --- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.96.1-r1.ebuild +++ b/net-mail/qmail-autoresponder/qmail-autoresponder-0.96.1-r1.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-mail/qmail-autoresponder/qmail-autoresponder-0.96.1-r1.ebuild,v 1.15 2007/02/22 16:00:23 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/qmail-autoresponder/qmail-autoresponder-0.96.1-r1.ebuild,v 1.16 2007/02/23 19:24:57 bangert Exp $ inherit fixheadtails eutils toolchain-funcs @@ -35,8 +35,8 @@ src_unpack() { src_compile() { cd ${S} - echo "${ROOT}/usr/include/bglibs" > conf-bgincs - echo "${ROOT}/usr/lib/bglibs" > conf-bglibs + echo "/usr/include/bglibs" > conf-bgincs + echo "/usr/lib/bglibs" > conf-bglibs echo "$(tc-getCC) ${CFLAGS}" > conf-cc echo "$(tc-getCC) ${LDFLAGS}" > conf-ld diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-0.96.2.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-0.96.2.ebuild index abe2794492dd..28f58114ec80 100644 --- a/net-mail/qmail-autoresponder/qmail-autoresponder-0.96.2.ebuild +++ b/net-mail/qmail-autoresponder/qmail-autoresponder-0.96.2.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-mail/qmail-autoresponder/qmail-autoresponder-0.96.2.ebuild,v 1.6 2007/02/22 16:00:23 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/qmail-autoresponder/qmail-autoresponder-0.96.2.ebuild,v 1.7 2007/02/23 19:24:57 bangert Exp $ inherit toolchain-funcs @@ -24,8 +24,8 @@ RDEPEND=" src_compile() { cd ${S} - echo "${ROOT}/usr/include/bglibs" > conf-bgincs - echo "${ROOT}/usr/lib/bglibs" > conf-bglibs + echo "/usr/include/bglibs" > conf-bgincs + echo "/usr/lib/bglibs" > conf-bglibs echo "$(tc-getCC) ${CFLAGS}" > conf-cc echo "$(tc-getCC) ${LDFLAGS}" > conf-ld |