diff options
author | 2006-12-21 20:00:58 +0000 | |
---|---|---|
committer | 2006-12-21 20:00:58 +0000 | |
commit | 117a324209d265205f96bb1513157f3c10e3a9cf (patch) | |
tree | 01252e34a04364cf43b8f25ad1bd6ec4fdce13c1 /net-im | |
parent | Version bump, bug #158732 by Sebastian <sebastian_ml at gmx.net>. (diff) | |
download | gentoo-2-117a324209d265205f96bb1513157f3c10e3a9cf.tar.gz gentoo-2-117a324209d265205f96bb1513157f3c10e3a9cf.tar.bz2 gentoo-2-117a324209d265205f96bb1513157f3c10e3a9cf.zip |
Add missing quotes for use_enable with console and gtk flags.
(Portage version: 5344-svn)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gaim/ChangeLog | 5 | ||||
-rw-r--r-- | net-im/gaim/gaim-2.0.0_beta5-r2.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/net-im/gaim/ChangeLog b/net-im/gaim/ChangeLog index d40baf30f1e7..8e13a4b76729 100644 --- a/net-im/gaim/ChangeLog +++ b/net-im/gaim/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/gaim # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/ChangeLog,v 1.426 2006/12/21 18:21:47 gothgirl Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/ChangeLog,v 1.427 2006/12/21 20:00:58 zmedico Exp $ + + 21 Dec 2006; Zac Medico <zmedico@gentoo.org> gaim-2.0.0_beta5-r2.ebuild: + Add missing quotes for use_enable with console and gtk flags. *gaim-2.0.0_beta5-r2 (21 Dec 2006) diff --git a/net-im/gaim/gaim-2.0.0_beta5-r2.ebuild b/net-im/gaim/gaim-2.0.0_beta5-r2.ebuild index d5fec747266d..283319cf55ea 100644 --- a/net-im/gaim/gaim-2.0.0_beta5-r2.ebuild +++ b/net-im/gaim/gaim-2.0.0_beta5-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/gaim-2.0.0_beta5-r2.ebuild,v 1.1 2006/12/21 18:21:47 gothgirl Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/gaim-2.0.0_beta5-r2.ebuild,v 1.2 2006/12/21 20:00:58 zmedico Exp $ inherit flag-o-matic eutils toolchain-funcs debug multilib mono autotools perl-app gnome2 @@ -214,9 +214,9 @@ src_compile() { fi if ! use console && ! use gtk; then - myconf=${myconf} --enable-consoleui + myconf="${myconf} --enable-consoleui" else - myconf=${myconf} $(use_enable console consoleui) $(use_enable gtk gtkui) + myconf="${myconf} $(use_enable console consoleui) $(use_enable gtk gtkui)" fi econf \ |