diff options
author | Heinrich Wendel <lanius@gentoo.org> | 2003-10-19 11:50:36 +0000 |
---|---|---|
committer | Heinrich Wendel <lanius@gentoo.org> | 2003-10-19 11:50:36 +0000 |
commit | 8512bb491c81ec749ec8265e5eab4eb1faf6685d (patch) | |
tree | 1210e82933c67d27d3cff038fc223fc9592e8f83 /eclass/aspell-dict.eclass | |
parent | changelog:P (diff) | |
download | gentoo-2-8512bb491c81ec749ec8265e5eab4eb1faf6685d.tar.gz gentoo-2-8512bb491c81ec749ec8265e5eab4eb1faf6685d.tar.bz2 gentoo-2-8512bb491c81ec749ec8265e5eab4eb1faf6685d.zip |
fixed dodoc's
Diffstat (limited to 'eclass/aspell-dict.eclass')
-rw-r--r-- | eclass/aspell-dict.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/aspell-dict.eclass b/eclass/aspell-dict.eclass index f133464f2048..57690a80f008 100644 --- a/eclass/aspell-dict.eclass +++ b/eclass/aspell-dict.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/aspell-dict.eclass,v 1.19 2003/09/16 04:05:42 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/aspell-dict.eclass,v 1.20 2003/10/19 11:50:36 lanius Exp $ # # Author: Seemant Kulleen <seemant@gentoo.org> # @@ -37,5 +37,7 @@ aspell-dict_src_install() { make DESTDIR=${D} install || die - dodoc Copyright README info + for doc in Copyright README info; do + [ -s "$doc" ] && dodoc $doc + done } |