diff options
author | Armando Di Cianno <fafhrd@gentoo.org> | 2004-09-24 17:32:37 +0000 |
---|---|---|
committer | Armando Di Cianno <fafhrd@gentoo.org> | 2004-09-24 17:32:37 +0000 |
commit | 351bb5dddaf3cf756d082bd9463ec2d9c3f2085d (patch) | |
tree | 87d7e27043ccd323ac6957e8a5fb45a00bdf73b0 /eclass/gnustep.eclass | |
parent | minor fix (diff) | |
download | historical-351bb5dddaf3cf756d082bd9463ec2d9c3f2085d.tar.gz historical-351bb5dddaf3cf756d082bd9463ec2d9c3f2085d.tar.bz2 historical-351bb5dddaf3cf756d082bd9463ec2d9c3f2085d.zip |
correctly identifying when documentation should be built via makefile
Diffstat (limited to 'eclass/gnustep.eclass')
-rw-r--r-- | eclass/gnustep.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/gnustep.eclass b/eclass/gnustep.eclass index a978a25c21dd..ab49bde762b2 100644 --- a/eclass/gnustep.eclass +++ b/eclass/gnustep.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep.eclass,v 1.12 2004/09/24 01:01:30 fafhrd Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep.eclass,v 1.13 2004/09/24 17:32:37 fafhrd Exp $ inherit eutils flag-o-matic @@ -122,7 +122,8 @@ egnustep_install() { } egnustep_doc() { - if [ -d ./Documentation ] ; then + if [ -f ./Documentation/GNUmakefile -o -f ./Documentation/[mM]akefile ] + then cd Documentation make HOME=${TMP} \ GNUSTEP_USER_ROOT=${TMP}/GNUstep \ |