From 2dd678d40b7a22d3ba1173a4e6878a9e0090d0dc Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 13 Aug 2016 10:20:01 +0900 Subject: [PATCH] Use make-mode of ``sphinx-quickstart`` by default --- CHANGES | 2 ++ sphinx/quickstart.py | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGES b/CHANGES index 17cf2e59b..f730a8d93 100644 --- a/CHANGES +++ b/CHANGES @@ -39,6 +39,8 @@ Incompatible changes * Fix :download: role on epub/qthelp builder. They ignore the role because they don't support it. * ``sphinx.ext.viewcode`` doesn't work on epub building by default. ``viewcode_enable_epub`` option * ``sphinx.ext.viewcode`` disabled on singlehtml builder. +* Use make-mode of ``sphinx-quickstart`` by default. To disable this, use + ``-M`` option Features added -------------- diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index 326da03db..cbe90e2a4 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -585,6 +585,7 @@ def main(argv=sys.argv): group.add_option('-M', '--no-use-make-mode', action='store_false', dest='make_mode', help='not use make-mode for Makefile/make.bat') group.add_option('-m', '--use-make-mode', action='store_true', dest='make_mode', + default=True, help='use make-mode for Makefile/make.bat') # parse options