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/autotools.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/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 340743655049..294f1609d0b7 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.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/autotools.eclass,v 1.7 2003/02/16 04:26:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.8 2003/02/18 09:00:45 carpaski Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -24,7 +24,7 @@ # # Copyright 1999-2002 Gentoo Technologies, Inc. # # Distributed under the terms of the GNU General Public License, v2 or later # # Maintainer: John Doe <john@foo.com> -# # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.7 2003/02/16 04:26:21 vapier Exp $ +# # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.8 2003/02/18 09:00:45 carpaski Exp $ # # # If you need to set the versions different from in here, it *must* # # be done before inherit.eclass is sourced @@ -81,7 +81,7 @@ INHERITED="$INHERITED $ECLASS" [ -z "$ACONFVER" ] && die "!!! You need to set \$ACONFVER *before* inheriting the eclass !!!" [ -z "$AMAKEVER" ] && die "!!! You need to set \$AMAKEVER *before* inheriting the eclass !!!" -DESCRIPTION="Based on the $ECLASS eclass" +[ -z "$DESCRIPTION" ] && DESCRIPTION="Based on the $ECLASS eclass" #ASRC_URI="ftp://ftp.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 # ftp://alpha.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 # ftp://ftp.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2 |