Fix use of quotes in Python build system (#22279)

This commit is contained in:
Adam J. Stewart 2021-03-15 13:11:27 -05:00 committed by Greg Becker
parent 6b0c775448
commit 0f486080b3

View File

@ -252,7 +252,7 @@ def install_args(self, spec, prefix):
'--install-purelib=%s' % pure_site_packages_dir,
'--install-platlib=%s' % plat_site_packages_dir,
'--install-scripts=bin',
'--install-data=""',
'--install-data=',
'--install-headers=%s' % inc_dir
]