diff options
author | Bruce A. Locke <blocke@gentoo.org> | 2002-06-04 10:10:03 +0000 |
---|---|---|
committer | Bruce A. Locke <blocke@gentoo.org> | 2002-06-04 10:10:03 +0000 |
commit | 1e21f0c0e65f27191bc5a922b6cdddd6554de1d0 (patch) | |
tree | 79ea1796de073b6f575b15bc10a457e8a4b6edb5 /eclass/gnome2.eclass | |
parent | small fix0rs (diff) | |
download | gentoo-2-1e21f0c0e65f27191bc5a922b6cdddd6554de1d0.tar.gz gentoo-2-1e21f0c0e65f27191bc5a922b6cdddd6554de1d0.tar.bz2 gentoo-2-1e21f0c0e65f27191bc5a922b6cdddd6554de1d0.zip |
-d typo fix
Diffstat (limited to 'eclass/gnome2.eclass')
-rw-r--r-- | eclass/gnome2.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index ea7e6dc8cbb2..2ae657951303 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.9 2002/06/04 09:21:59 blocke Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.10 2002/06/04 10:10:03 blocke Exp $ # Authors: # Bruce A. Locke <blocke@shivan.org> @@ -51,16 +51,16 @@ gnome2_src_install() { einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ ${1}" + unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL + # manual document installation if [ -n "${DOCS}" ] then dodoc ${DOCS} fi - unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL - # only update scrollkeeper if this package needs it - [ -a ${D}/var/lib/scrollkeeper ] && SCROLLKEEPER_UPDATE="1" + [ -d ${D}/var/lib/scrollkeeper ] && SCROLLKEEPER_UPDATE="1" } |