diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-09 21:04:56 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-09 21:04:56 +0000 |
commit | cec01c02dfe09e980cb2574078a4dd3888d7e86f (patch) | |
tree | 0c9fab53d027a68551dce5ed1b5a7bca2b94ba0b /net-dns/pdnsd | |
parent | version bump -- this one has the luit fixes that Thomas Dickey promised in bu... (diff) | |
download | gentoo-2-cec01c02dfe09e980cb2574078a4dd3888d7e86f.tar.gz gentoo-2-cec01c02dfe09e980cb2574078a4dd3888d7e86f.tar.bz2 gentoo-2-cec01c02dfe09e980cb2574078a4dd3888d7e86f.zip |
Fix use invocation
Diffstat (limited to 'net-dns/pdnsd')
-rw-r--r-- | net-dns/pdnsd/ChangeLog | 6 | ||||
-rw-r--r-- | net-dns/pdnsd/pdnsd-1.1.7a.ebuild | 2 | ||||
-rw-r--r-- | net-dns/pdnsd/pdnsd-1.1.9.ebuild | 4 |
3 files changed, 8 insertions, 4 deletions
diff --git a/net-dns/pdnsd/ChangeLog b/net-dns/pdnsd/ChangeLog index 364a92a9a54f..7326f10b0e80 100644 --- a/net-dns/pdnsd/ChangeLog +++ b/net-dns/pdnsd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-dns/pdnsd # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/ChangeLog,v 1.30 2004/06/07 22:18:08 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/ChangeLog,v 1.31 2004/06/09 21:04:56 agriffis Exp $ + + 09 Jun 2004; Aron Griffis <agriffis@gentoo.org> pdnsd-1.1.7a.ebuild, + pdnsd-1.1.9.ebuild: + Fix use invocation 07 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> pdnsd-1.1.10.ebuild, pdnsd-1.1.11.ebuild: diff --git a/net-dns/pdnsd/pdnsd-1.1.7a.ebuild b/net-dns/pdnsd/pdnsd-1.1.7a.ebuild index 51c1affd75f3..c4e42ae7eb1a 100644 --- a/net-dns/pdnsd/pdnsd-1.1.7a.ebuild +++ b/net-dns/pdnsd/pdnsd-1.1.7a.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/pdnsd-1.1.7a.ebuild,v 1.8 2004/02/02 16:59:39 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/pdnsd-1.1.7a.ebuild,v 1.9 2004/06/09 21:04:56 agriffis Exp $ S=${WORKDIR}/${P} DESCRIPTION="Proxy DNS server with permanent caching" diff --git a/net-dns/pdnsd/pdnsd-1.1.9.ebuild b/net-dns/pdnsd/pdnsd-1.1.9.ebuild index 63772100d4b8..cef11c7e4ad0 100644 --- a/net-dns/pdnsd/pdnsd-1.1.9.ebuild +++ b/net-dns/pdnsd/pdnsd-1.1.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/pdnsd-1.1.9.ebuild,v 1.6 2004/04/27 02:45:09 randy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/pdnsd-1.1.9.ebuild,v 1.7 2004/06/09 21:04:56 agriffis Exp $ inherit eutils @@ -38,7 +38,7 @@ src_compile() { cd ${S} || die local myconf - if [ `use debug` ]; then + if use debug; then myconf="${myconf} --with-debug=3" CFLAGS="${CFLAGS} -g" fi |