Add some debugging to figure out what's wrong with the program files variable

merge-requests/1/merge
Raoul Snyman 2019-05-15 15:57:56 -07:00
parent e88f99966e
commit 919a96f0bc
1 changed files with 2 additions and 0 deletions

View File

@ -322,6 +322,7 @@ class WindowsBuilder(Builder):
"""
Build some default values for the config file
"""
print('get_config_defaults')
config_defaults = super().get_config_defaults()
config_defaults.update({
'pyroot': self.python_root,
@ -354,6 +355,7 @@ class WindowsBuilder(Builder):
"""
Set up some system paths.
"""
print('setup_system_paths')
super().setup_system_paths()
self.python_root = os.path.dirname(self.python)
self.site_packages = os.path.join(self.python_root, 'Lib', 'site-packages')