Skip to content

Commit

Permalink
Remove leftover from when I copied the paver file from samplerate sci…
Browse files Browse the repository at this point in the history
…kit.
  • Loading branch information
cournape committed Mar 29, 2009
1 parent 0b0dbdf commit 3073f2c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pavement.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 3073f2c

Please sign in to comment.