Commit e8d2acf1 authored by Michael W. Hudson's avatar Michael W. Hudson

Fix for

[ #477371 ] build_scripts can use wrong #! line

scripts now get "built" into a directory

build/scripts-$(PYTHON_VERSION)/
parent 51c20129
......@@ -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 ()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment