diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-04-10 18:25:08 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-04-10 18:25:08 +0000 |
commit | cb949f4d74bbe8feba020c9a1cb7bba2fe40450b (patch) | |
tree | 06e9fba101675615fce992a4ddffe927566625c0 /eclass/xfconf.eclass | |
parent | stable x86, bug 361823 (diff) | |
download | gentoo-2-cb949f4d74bbe8feba020c9a1cb7bba2fe40450b.tar.gz gentoo-2-cb949f4d74bbe8feba020c9a1cb7bba2fe40450b.tar.bz2 gentoo-2-cb949f4d74bbe8feba020c9a1cb7bba2fe40450b.zip |
Fix previous commit and fix all the code
Diffstat (limited to 'eclass/xfconf.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 251efd44d9e0..fa39e88e0c48 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.29 2011/04/10 18:20:53 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.30 2011/04/10 18:25:08 ssuominen Exp $ # @ECLASS: xfconf.eclass # @MAINTAINER: @@ -79,11 +79,11 @@ xfconf_src_prepare() { debug-print-function ${FUNCNAME} "$@" base_src_prepare - if [[ "${EINTLTOOLIZE}" == "yes" ]]; then + if [[ -n $EINTLTOOLIZE ]]; then intltoolize --force --copy --automake || die fi - if [[ "${EAUTORECONF}" == "yes" ]]; then + if [[ -n $EAUTORECONF ]]; then AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" eautoreconf else elibtoolize |