diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2021-03-15 13:11:27 -0500 |
---|---|---|
committer | Greg Becker <becker33@llnl.gov> | 2021-09-21 16:58:41 -0700 |
commit | 0f486080b38a4cc9bbe6b9fca05c181dcbe3d3ca (patch) | |
tree | 088f75f57622672b91daae026d12a3ee5739c18d | |
parent | 6b0c775448354ae15ed356530539c983339b5594 (diff) | |
download | spack-0f486080b38a4cc9bbe6b9fca05c181dcbe3d3ca.tar.gz spack-0f486080b38a4cc9bbe6b9fca05c181dcbe3d3ca.tar.bz2 spack-0f486080b38a4cc9bbe6b9fca05c181dcbe3d3ca.tar.xz spack-0f486080b38a4cc9bbe6b9fca05c181dcbe3d3ca.zip |
Fix use of quotes in Python build system (#22279)
-rw-r--r-- | lib/spack/spack/build_systems/python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/build_systems/python.py b/lib/spack/spack/build_systems/python.py index 2616642732..83b50d6b37 100644 --- a/lib/spack/spack/build_systems/python.py +++ b/lib/spack/spack/build_systems/python.py @@ -252,7 +252,7 @@ class PythonPackage(PackageBase): '--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 ] |