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 | 99470fa9c083d245ce67c6824c76ce0aeb80be12 (patch) | |
tree | 928e9897ffc07d95405d22e586651fab819d5079 /eclass/gcc.eclass | |
parent | version bump (diff) | |
download | gentoo-2-99470fa9c083d245ce67c6824c76ce0aeb80be12.tar.gz gentoo-2-99470fa9c083d245ce67c6824c76ce0aeb80be12.tar.bz2 gentoo-2-99470fa9c083d245ce67c6824c76ce0aeb80be12.zip |
If description is set... don't overwrite it...
Fixes to everything but ASPELL and KDE-SOURCE
Diffstat (limited to 'eclass/gcc.eclass')
-rw-r--r-- | eclass/gcc.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/gcc.eclass b/eclass/gcc.eclass index f2f1d8566ce5..332aab0033a2 100644 --- a/eclass/gcc.eclass +++ b/eclass/gcc.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/gcc.eclass,v 1.10 2003/02/16 04:26:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gcc.eclass,v 1.11 2003/02/18 09:00:45 carpaski Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -11,7 +11,7 @@ INHERITED="$INHERITED $ECLASS" newdepend sys-devel/gcc -DESCRIPTION="Based on the ${ECLASS} eclass" +[ -z "$DESCRIPTION" ] && DESCRIPTION="Based on the ${ECLASS} eclass" # NOTE: To force gcc3 if multi ver install, do: export WANT_GCC_3="yes" |