diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-12-21 20:05:52 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-12-21 20:05:52 +0000 |
commit | 474f9a2bafa39b3abb3c4634baf88c40cdb71c0e (patch) | |
tree | f68567dfbaa20b4f2bee87be2bfcdd5851539f10 /net-im/gaim | |
parent | Add missing quotes for use_enable with console and gtk flags. (diff) | |
download | gentoo-2-474f9a2bafa39b3abb3c4634baf88c40cdb71c0e.tar.gz gentoo-2-474f9a2bafa39b3abb3c4634baf88c40cdb71c0e.tar.bz2 gentoo-2-474f9a2bafa39b3abb3c4634baf88c40cdb71c0e.zip |
Add missing quotes for use_enable with console and gtk flags.
(Portage version: 5344-svn)
Diffstat (limited to 'net-im/gaim')
-rw-r--r-- | net-im/gaim/ChangeLog | 5 | ||||
-rw-r--r-- | net-im/gaim/gaim-2.0.0_beta5-r1.ebuild | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/net-im/gaim/ChangeLog b/net-im/gaim/ChangeLog index 8e13a4b76729..824a076f4ec3 100644 --- a/net-im/gaim/ChangeLog +++ b/net-im/gaim/ChangeLog @@ -1,8 +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.427 2006/12/21 20:00:58 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/ChangeLog,v 1.428 2006/12/21 20:05:52 zmedico Exp $ - 21 Dec 2006; Zac Medico <zmedico@gentoo.org> gaim-2.0.0_beta5-r2.ebuild: + 21 Dec 2006; Zac Medico <zmedico@gentoo.org> + gaim-2.0.0_beta5-r1.ebuild, 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-r1.ebuild b/net-im/gaim/gaim-2.0.0_beta5-r1.ebuild index 4fdd783a528f..b6aa5afe18f8 100644 --- a/net-im/gaim/gaim-2.0.0_beta5-r1.ebuild +++ b/net-im/gaim/gaim-2.0.0_beta5-r1.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-r1.ebuild,v 1.4 2006/12/21 17:43:06 gothgirl Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/gaim-2.0.0_beta5-r1.ebuild,v 1.5 2006/12/21 20:05:52 zmedico Exp $ inherit flag-o-matic eutils toolchain-funcs debug multilib mono autotools perl-app gnome2 @@ -210,9 +210,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 \ |