diff --git a/makepanda/installer.nsi b/makepanda/installer.nsi index c5e0df0e5f..e5fcf2164c 100755 --- a/makepanda/installer.nsi +++ b/makepanda/installer.nsi @@ -15,7 +15,6 @@ ; BUILT - location of panda install tree. ; SOURCE - location of the panda source-tree if available, OR location of panda install tree. ; PYVER - version of Python that Panda was built with (ie, "2.7") -; PYEXTRAS - directory containing python extras, if any. ; REGVIEW - either 32 or 64, depending on the build architecture. ; @@ -372,11 +371,6 @@ SectionGroup "Python support" SetOutPath "$INSTDIR\python" File /r "${BUILT}\python\*" - !ifdef PYEXTRAS - SetOutPath "$INSTDIR\python\lib" - File /nonfatal /r "${PYEXTRAS}\*" - !endif - SetDetailsPrint both DetailPrint "Adding registry keys for Python..." SetDetailsPrint listonly diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index 239eff8488..6c23e73104 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -6521,7 +6521,6 @@ def MakeInstallerNSIS(file, title, installdir): 'BUILT' : panda, 'SOURCE' : psource, 'PYVER' : SDK["PYTHONVERSION"][6:9], - 'PYEXTRAS' : os.path.join(os.path.abspath(GetThirdpartyBase()), 'win-extras'), 'REGVIEW' : regview, }