diff options
-rw-r--r-- | pavement.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pavement.py b/pavement.py index 482d20c05..9e1df308c 100644 --- a/pavement.py +++ b/pavement.py @@ -207,14 +207,13 @@ def html(options): @task def latex(): - """Build samplerate's documentation and install it into - scikits/samplerate/docs""" + """Build numpy documentation in latex format.""" subprocess.check_call(["make", "latex"], cwd="doc") @task @needs('latex') def pdf(): - def build_latex(): + def build_pdf(): subprocess.check_call(["make", "all-pdf"], cwd=str(DOC_BLD_LATEX)) dry("Build pdf doc", build_latex) |