diff options
| author | Daniel Holth <dholth@fastmail.fm> | 2012-06-23 02:10:06 -0400 |
|---|---|---|
| committer | Daniel Holth <dholth@fastmail.fm> | 2012-06-23 02:10:06 -0400 |
| commit | 984d4394e3d8766be271b1a0d0abb1366a7fa4b8 (patch) | |
| tree | 34c36673c7a3c01ceac53ca90d19ba8223427c4d | |
| parent | 2157a4fac386fd0219d7333d556b8e85b61d1613 (diff) | |
| download | wheel-git-984d4394e3d8766be271b1a0d0abb1366a7fa4b8.tar.gz | |
fix location of data-dir
| -rw-r--r-- | wheel/bdist_wheel.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/wheel/bdist_wheel.py b/wheel/bdist_wheel.py index b1d5d9c..2976a8c 100644 --- a/wheel/bdist_wheel.py +++ b/wheel/bdist_wheel.py @@ -69,8 +69,7 @@ class bdist_wheel(Command): bdist_base = self.get_finalized_command('bdist').bdist_base self.bdist_dir = os.path.join(bdist_base, 'wheel') - self.data_dir = os.path.join(self.bdist_dir, - self.distribution.get_fullname() + '.data') + self.data_dir = self.distribution.get_fullname() + '.data' need_options = ('dist_dir', 'plat_name', 'skip_build') |
