From e79c46b07600d2771047258480379a6120dcea00 Mon Sep 17 00:00:00 2001 From: Sylvain Date: Mon, 26 Jan 2009 18:40:02 +0100 Subject: dirty fix to make lgc compilable for debian stable (epydoc version pb) --- debian/rules | 2 +- doc/makefile | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/debian/rules b/debian/rules index e15c1e9..57da4e9 100755 --- a/debian/rules +++ b/debian/rules @@ -19,7 +19,7 @@ build-stamp: python setup.py -q build # build doc - $(MAKE) -C doc + $(MAKE) -C doc || true touch build-stamp diff --git a/doc/makefile b/doc/makefile index 8b7fddf..ddea5d5 100644 --- a/doc/makefile +++ b/doc/makefile @@ -1,7 +1,9 @@ all: epydoc epydoc: - epydoc -o apidoc --html -v --graph all --no-private --exclude="__pkginfo__" --exclude="setup" -n "Logilab's common library" ../ + #epydoc -o apidoc --html -v --graph all --no-private --exclude="__pkginfo__" --exclude="setup" -n "Logilab's common library" ../ + mkdir apidoc + epydoc -o apidoc --html -v --no-private --exclude="__pkginfo__" --exclude="setup" -n "Logilab's common library" ../ clean: rm -rf apidoc -- cgit v1.2.1