diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2021-03-15 13:11:27 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-15 11:11:27 -0700 |
commit | 70c505a0b8d6be1ecef9979cd3733db09368e77f (patch) | |
tree | e303f7c70fc3f9c5e9ae245d79fa5defa1183650 /lib | |
parent | 78d1b28b72fffdcb3db5836b519f41d7d152727b (diff) | |
download | spack-70c505a0b8d6be1ecef9979cd3733db09368e77f.tar.gz spack-70c505a0b8d6be1ecef9979cd3733db09368e77f.tar.bz2 spack-70c505a0b8d6be1ecef9979cd3733db09368e77f.tar.xz spack-70c505a0b8d6be1ecef9979cd3733db09368e77f.zip |
Fix use of quotes in Python build system (#22279)
Diffstat (limited to 'lib')
-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 7ffceeb0d6..696fb4aec9 100644 --- a/lib/spack/spack/build_systems/python.py +++ b/lib/spack/spack/build_systems/python.py @@ -262,7 +262,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 ] |