diff options
author | Antony Lee <anntzer.lee@gmail.com> | 2018-05-10 13:23:45 -0700 |
---|---|---|
committer | Antony Lee <anntzer.lee@gmail.com> | 2018-05-10 13:23:59 -0700 |
commit | f101bb6615e7dea6f20fa2bc6ae144d961005cb7 (patch) | |
tree | 1d19833a24bae0d074b15ecee8f7ef15d5a5f9c2 | |
parent | 169297d0b76bf0b503033dadeb14f9a2b735e422 (diff) | |
download | sphinx-git-f101bb6615e7dea6f20fa2bc6ae144d961005cb7.tar.gz |
Remove unused SPHINXPROJ from new Makefile/make.bat.
-rw-r--r-- | sphinx/make_mode.py | 2 | ||||
-rw-r--r-- | sphinx/templates/quickstart/Makefile.new_t | 1 | ||||
-rw-r--r-- | sphinx/templates/quickstart/make.bat.new_t | 1 |
3 files changed, 0 insertions, 4 deletions
diff --git a/sphinx/make_mode.py b/sphinx/make_mode.py index 23fb4ce64..ae19e93ee 100644 --- a/sphinx/make_mode.py +++ b/sphinx/make_mode.py @@ -30,8 +30,6 @@ if False: # For type annotation from typing import List # NOQA -proj_name = os.getenv('SPHINXPROJ', '<project>') - BUILDERS = [ ("", "html", "to make standalone HTML files"), diff --git a/sphinx/templates/quickstart/Makefile.new_t b/sphinx/templates/quickstart/Makefile.new_t index c7cd62dda..16a9d482f 100644 --- a/sphinx/templates/quickstart/Makefile.new_t +++ b/sphinx/templates/quickstart/Makefile.new_t @@ -4,7 +4,6 @@ # You can set these variables from the command line. SPHINXOPTS = SPHINXBUILD = sphinx-build -SPHINXPROJ = {{ project_fn }} SOURCEDIR = {{ rsrcdir }} BUILDDIR = {{ rbuilddir }} diff --git a/sphinx/templates/quickstart/make.bat.new_t b/sphinx/templates/quickstart/make.bat.new_t index e49ffbe78..50a12e7af 100644 --- a/sphinx/templates/quickstart/make.bat.new_t +++ b/sphinx/templates/quickstart/make.bat.new_t @@ -9,7 +9,6 @@ if "%SPHINXBUILD%" == "" ( ) set SOURCEDIR={{ rsrcdir }} set BUILDDIR={{ rbuilddir }} -set SPHINXPROJ={{ project_fn }} if "%1" == "" goto help |