mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Use make-mode of `sphinx-quickstart
` by default
This commit is contained in:
parent
8a9459b308
commit
2dd678d40b
2
CHANGES
2
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
|
||||
--------------
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user