Merge branch 'remove-argparse' of git://github.com/dagwieers/ansible into devel

Conflicts:
	hacking/module_formatter.py

Don't run webdocs build when building packages
This commit is contained in:
Michael DeHaan
2012-10-10 18:46:51 -04:00
3 changed files with 70 additions and 53 deletions

View File

@@ -62,7 +62,7 @@ tests:
PYTHONPATH=./lib nosetests -d -v
# To force a rebuild of the docs run 'touch VERSION && make docs'
docs: $(MANPAGES) modulepages webdocs
docs: $(MANPAGES) modulepages
# Regenerate %.1.asciidoc if %.1.asciidoc.in has been modified more
# recently than %.1.asciidoc.
@@ -116,7 +116,7 @@ python:
install:
python setup.py install
sdist: clean
sdist: clean docs
python setup.py sdist -t MANIFEST.in
rpmcommon: sdist
@@ -175,5 +175,8 @@ modulejs:
make modulejson
hacking/module_formatter.py -A $(VERSION) -t js -o docs/js --module-dir=docs/json --template-dir=hacking/templates
# because this requires Sphinx it is not run as part of every build, those building the RPM and so on can ignore this
webdocs:
(cd docsite; make docs)