mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Fix for
[ #477371 ] build_scripts can use wrong #! line scripts now get "built" into a directory build/scripts-$(PYTHON_VERSION)/
This commit is contained in:
parent
2990640d8a
commit
49bdaede1b
1 changed files with 2 additions and 1 deletions
|
@ -90,7 +90,8 @@ class build (Command):
|
|||
self.build_temp = os.path.join(self.build_base,
|
||||
'temp' + plat_specifier)
|
||||
if self.build_scripts is None:
|
||||
self.build_scripts = os.path.join(self.build_base, 'scripts')
|
||||
self.build_scripts = os.path.join(self.build_base,
|
||||
'scripts-' + sys.version[0:3])
|
||||
|
||||
# finalize_options ()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue