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/libtool.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/libtool.eclass')
-rw-r--r-- | eclass/libtool.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/libtool.eclass b/eclass/libtool.eclass index e0b277b4d13b..0a6f5011ceaa 100644 --- a/eclass/libtool.eclass +++ b/eclass/libtool.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/libtool.eclass,v 1.20 2003/02/16 04:26:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/libtool.eclass,v 1.21 2003/02/18 09:00:45 carpaski Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -12,7 +12,7 @@ INHERITED="$INHERITED $ECLASS" newdepend "!bootstrap? ( sys-devel/libtool )" -DESCRIPTION="Based on the ${ECLASS} eclass" +[ -z "$DESCRIPTION" ] && DESCRIPTION="Based on the ${ECLASS} eclass" ELIBTOOL_VERSION=1.8.1 |