diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-08-13 10:20:01 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-08-13 12:32:54 +0900 |
commit | 2dd678d40b7a22d3ba1173a4e6878a9e0090d0dc (patch) | |
tree | fbe55e8caa3c14bfc96f734a4f5a3722e69690c1 /sphinx/quickstart.py | |
parent | 8a9459b3089af792c7d59b2932f656352032e717 (diff) | |
download | sphinx-git-2dd678d40b7a22d3ba1173a4e6878a9e0090d0dc.tar.gz |
Use make-mode of ``sphinx-quickstart`` by default
Diffstat (limited to 'sphinx/quickstart.py')
-rw-r--r-- | sphinx/quickstart.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 |