diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-12-16 01:27:18 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-12-16 01:27:18 +0900 |
commit | facce1fb020a61637a8d110cf556a08912e64035 (patch) | |
tree | 8403571d708840746bed9fb202c6f173fa303635 /sphinx/cmd/quickstart.py | |
parent | 5bc5b8f013ff34a4bbc6ee7b565b1d1d6f7d4a77 (diff) | |
download | sphinx-git-facce1fb020a61637a8d110cf556a08912e64035.tar.gz |
quickstart: Fix make_mode should be chosen by default
Diffstat (limited to 'sphinx/cmd/quickstart.py')
-rw-r--r-- | sphinx/cmd/quickstart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index af07d4978..80e9e3dd4 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -586,7 +586,7 @@ Makefile to be used with sphinx-build. dest='batchfile', help='do not create batchfile') group.add_argument('-m', '--use-make-mode', action='store_true', - dest='make_mode', + dest='make_mode', default=True, help='use make-mode for Makefile/make.bat') group.add_argument('-M', '--no-use-make-mode', action='store_false', dest='make_mode', |