diff options
author | Nicholas Jones <carpaski@gentoo.org> | 2003-02-18 09:00:45 +0000 |
---|---|---|
committer | Nicholas Jones <carpaski@gentoo.org> | 2003-02-18 09:00:45 +0000 |
commit | bff8905cc314e5869bfca7293c6694a875eea304 (patch) | |
tree | 11c0c454ab8341e22f420c158fd93f70ffc08395 /eclass/kmod.eclass | |
parent | version bump (diff) | |
download | historical-bff8905cc314e5869bfca7293c6694a875eea304.tar.gz historical-bff8905cc314e5869bfca7293c6694a875eea304.tar.bz2 historical-bff8905cc314e5869bfca7293c6694a875eea304.zip |
If description is set... don't overwrite it...
Fixes to everything but ASPELL and KDE-SOURCE
Diffstat (limited to 'eclass/kmod.eclass')
-rw-r--r-- | eclass/kmod.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kmod.eclass b/eclass/kmod.eclass index d30d6ff367e2..bd779e360fa8 100644 --- a/eclass/kmod.eclass +++ b/eclass/kmod.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kmod.eclass,v 1.6 2003/02/16 04:26:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kmod.eclass,v 1.7 2003/02/18 09:00:45 carpaski Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -10,7 +10,7 @@ ECLASS=kmod INHERITED="$INHERITED $ECLASS" S=${WORKDIR}/${P} -DESCRIPTION="Based on the $ECLASS eclass" +[ -z "$DESCRIPTION" ] && DESCRIPTION="Based on the $ECLASS eclass" SRC_URI="http://ibiblio.org/gentoo/distfiles/${P}.patch.bz2" |