summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2021-03-15 13:11:27 -0500
committerGitHub <noreply@github.com>2021-03-15 11:11:27 -0700
commit70c505a0b8d6be1ecef9979cd3733db09368e77f (patch)
treee303f7c70fc3f9c5e9ae245d79fa5defa1183650 /lib
parent78d1b28b72fffdcb3db5836b519f41d7d152727b (diff)
downloadspack-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.py2
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
]