diff options
author | Bruce A. Locke <blocke@gentoo.org> | 2002-06-04 06:46:11 +0000 |
---|---|---|
committer | Bruce A. Locke <blocke@gentoo.org> | 2002-06-04 06:46:11 +0000 |
commit | de34e324d093e9caeb2bf3f9706e429854e794d3 (patch) | |
tree | 1b24a3fbc145000529603b291809b58fe1625c14 /eclass/gnome2.eclass | |
parent | Version upped. gtk and QT support also added. Fixes #3331 (diff) | |
download | gentoo-2-de34e324d093e9caeb2bf3f9706e429854e794d3.tar.gz gentoo-2-de34e324d093e9caeb2bf3f9706e429854e794d3.tar.bz2 gentoo-2-de34e324d093e9caeb2bf3f9706e429854e794d3.zip |
fix a stupid mistake
Diffstat (limited to 'eclass/gnome2.eclass')
-rw-r--r-- | eclass/gnome2.eclass | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index e01878a051cb..70df12d9473e 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.6 2002/06/04 06:41:01 blocke Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.7 2002/06/04 06:46:11 blocke Exp $ # Authors: # Bruce A. Locke <blocke@shivan.org> @@ -42,9 +42,9 @@ gnome2_src_install() { einstall " scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper/ ${1}" # manual document installation - if [ -n "${DOC}" ] + if [ -n "${DOCS}" ] then - dodoc ${DOC} + dodoc ${DOCS} fi unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL @@ -54,16 +54,16 @@ gnome2_src_install() { gnome2_pkg_postinst() { # schema installation - if [ -n "${SCHEMA}" ] + if [ -n "${SCHEMAS}" ] then export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` echo ">>> Updating GConf2 Schemas for ${P}" - for x in $SCHEMA + for x in $SCHEMAS do /usr/bin/gconftool-2 --makefile-install-rule \ - /etc/gconf/schemas/${SCHEMA} + /etc/gconf/schemas/${x} done fi |