diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-04-10 18:13:35 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-04-10 18:13:35 +0000 |
commit | f4a739fa2a0e0b030100013e546c5030bb12bde0 (patch) | |
tree | 527ef008fc02e712720a8a4312ae1f9fc183093d /eclass | |
parent | Remove obsolete masks (diff) | |
download | gentoo-2-f4a739fa2a0e0b030100013e546c5030bb12bde0.tar.gz gentoo-2-f4a739fa2a0e0b030100013e546c5030bb12bde0.tar.bz2 gentoo-2-f4a739fa2a0e0b030100013e546c5030bb12bde0.zip |
Simply check if EINTLTOOLIZE and EAUTORECONF is set or not, to support other formats such as true or 1
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/xfconf.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/xfconf.eclass b/eclass/xfconf.eclass index bc765996a658..080ccc9e767a 100644 --- a/eclass/xfconf.eclass +++ b/eclass/xfconf.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.27 2011/04/09 18:00:29 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.28 2011/04/10 18:13:35 ssuominen Exp $ # @ECLASS: xfconf.eclass # @MAINTAINER: @@ -31,11 +31,11 @@ inherit autotools base eutils fdo-mime gnome2-utils libtool -if [[ "${EINTLTOOLIZE}" == "yes" ]]; then +if [[ -n $EINTLTOOLIZE ]]; then _xfce4_intltool="dev-util/intltool" fi -if [[ "${EAUTORECONF}" == "yes" ]]; then +if [[ -n $EAUTORECONF ]]; then _xfce4_m4=">=dev-util/xfce4-dev-tools-4.8.0" fi |