From 30bb2bc9fe9895de00dd0f5dfe62e87d5f70e4db Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 24 Nov 2008 20:42:05 +0100 Subject: [PATCH] Fix #54: awkward wording in quickstart. --- sphinx/quickstart.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index 030245355..a66f7ecaf 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -509,12 +509,15 @@ directly.''' print bold('Finished: An initial directory structure has been created.') print ''' You should now populate your master file %s and create other documentation -source files. Use the sphinx-build script to build the docs, like so: -''' % masterfile + (create_makefile and ''' - make -''' or ''' - sphinx-build -b %s %s -''' % (srcdir, builddir)) +source files. ''' % masterfile + (create_makefile and '''\ +Use the Makefile to build the docs, like so: + make builder +''' or '''\ +Use the sphinx-build command to build the docs, like so: + sphinx-build -b builder %s %s +''' % (srcdir, builddir)) + '''\ +where "builder" is one of the supported builders, e.g. html, latex or linkcheck. +''' def main(argv=sys.argv):