diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-14 22:52:56 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-14 22:52:56 +0000 |
commit | 5a9726603d30ef5e1cda105242b25d00492677cb (patch) | |
tree | 33ecffa3761df6e0ab3da986bb29e1552a1d3ae0 /net-misc/unison | |
parent | initial x support ~ppc64, bug #53763 (diff) | |
download | historical-5a9726603d30ef5e1cda105242b25d00492677cb.tar.gz historical-5a9726603d30ef5e1cda105242b25d00492677cb.tar.bz2 historical-5a9726603d30ef5e1cda105242b25d00492677cb.zip |
Fix use invocation
Diffstat (limited to 'net-misc/unison')
-rw-r--r-- | net-misc/unison/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/unison/unison-2.9.1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/net-misc/unison/ChangeLog b/net-misc/unison/ChangeLog index 7ba924aa6e0c..5be2f2e95779 100644 --- a/net-misc/unison/ChangeLog +++ b/net-misc/unison/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/unison # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.12 2004/06/08 08:49:58 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.13 2004/06/14 22:52:56 agriffis Exp $ + + 14 Jun 2004; Aron Griffis <agriffis@gentoo.org> unison-2.9.1.ebuild: + Fix use invocation 08 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> unison-2.9.1.ebuild: Stable on alpha. diff --git a/net-misc/unison/unison-2.9.1.ebuild b/net-misc/unison/unison-2.9.1.ebuild index a18c717cd7e9..58cd0381a08e 100644 --- a/net-misc/unison/unison-2.9.1.ebuild +++ b/net-misc/unison/unison-2.9.1.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-misc/unison/unison-2.9.1.ebuild,v 1.13 2004/06/08 08:49:58 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.9.1.ebuild,v 1.14 2004/06/14 22:52:56 agriffis Exp $ IUSE="gtk" @@ -30,7 +30,7 @@ src_compile() { local myconf - if [ `use gtk` ]; then + if use gtk; then myconf="$myconf UISTYLE=gtk" else myconf="$myconf UISTYLE=text" |