mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
#338: Fix running with `-C
` under Windows.
This commit is contained in:
parent
ef8ae809e6
commit
b24e6d55e3
2
CHANGES
2
CHANGES
@ -1,6 +1,8 @@
|
||||
Release 0.6.5 (in development)
|
||||
==============================
|
||||
|
||||
* #338: Fix running with ``-C`` under Windows.
|
||||
|
||||
* Make the ``start-after`` and ``end-before`` options to the
|
||||
``literalinclude`` directive work correctly if not used together.
|
||||
|
||||
|
@ -94,6 +94,11 @@ class Sphinx(object):
|
||||
self.config = Config(confdir, CONFIG_FILENAME, confoverrides, self.tags)
|
||||
self.config.check_unicode(self.warn)
|
||||
|
||||
# set confdir to srcdir if -C given (!= no confdir); a few pieces
|
||||
# of code expect a confdir to be set
|
||||
if self.confdir is None:
|
||||
self.confdir = self.srcdir
|
||||
|
||||
# load all extension modules
|
||||
for extension in self.config.extensions:
|
||||
self.setup_extension(extension)
|
||||
|
Loading…
Reference in New Issue
Block a user