summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorArmando Di Cianno <fafhrd@gentoo.org>2004-11-16 02:30:16 +0000
committerArmando Di Cianno <fafhrd@gentoo.org>2004-11-16 02:30:16 +0000
commit0b16dd93976bdeabe61d923373ed7c8e47ab3e1a (patch)
tree90cafaf76cb4e5bee589c034bc89f26d849dd01f /eclass
parentOnly include compiler.h if using 2.6 headers #71330. (Manifest recommit) (diff)
downloadgentoo-2-0b16dd93976bdeabe61d923373ed7c8e47ab3e1a.tar.gz
gentoo-2-0b16dd93976bdeabe61d923373ed7c8e47ab3e1a.tar.bz2
gentoo-2-0b16dd93976bdeabe61d923373ed7c8e47ab3e1a.zip
Minor fix for gnustep documentation building
Diffstat (limited to 'eclass')
-rw-r--r--eclass/gnustep-funcs.eclass4
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/gnustep-funcs.eclass b/eclass/gnustep-funcs.eclass
index dee661546308..8dafe9153197 100644
--- a/eclass/gnustep-funcs.eclass
+++ b/eclass/gnustep-funcs.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-funcs.eclass,v 1.1 2004/11/12 03:46:33 fafhrd Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep-funcs.eclass,v 1.2 2004/11/16 02:30:16 fafhrd Exp $
ECLASS=gnustep-funcs
INHERITED="$INHERITED $ECLASS"
@@ -204,6 +204,7 @@ egnustep_install() {
# Note: docs installed with this from a GNUMakefile,
# not just some files in a Documentation directory
egnustep_doc() {
+ cd ${S}/Documentation
if [ -f ./[mM]akefile -o -f ./GNUmakefile ] ; then
local gs_make_opts="${1}"
if use debug ; then
@@ -217,6 +218,7 @@ egnustep_doc() {
else
die "no Makefile found"
fi
+ cd ..
return 0
}
###########################################################################