summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Wendel <lanius@gentoo.org>2003-10-19 11:50:36 +0000
committerHeinrich Wendel <lanius@gentoo.org>2003-10-19 11:50:36 +0000
commita06e32c8c9cb8897a519868941ad1addae2d0a88 (patch)
tree42f66fd404aa6cb2370b3db815e69be49f80df33 /eclass/aspell-dict.eclass
parentchangelog:P (diff)
downloadhistorical-a06e32c8c9cb8897a519868941ad1addae2d0a88.tar.gz
historical-a06e32c8c9cb8897a519868941ad1addae2d0a88.tar.bz2
historical-a06e32c8c9cb8897a519868941ad1addae2d0a88.zip
fixed dodoc's
Diffstat (limited to 'eclass/aspell-dict.eclass')
-rw-r--r--eclass/aspell-dict.eclass6
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
}