diff options
| author | Greg Ward <gward@python.net> | 2000-06-17 01:34:45 (GMT) |
|---|---|---|
| committer | Greg Ward <gward@python.net> | 2000-06-17 01:34:45 (GMT) |
| commit | c566232c4dbfbeda855e8721ced5fef55ab60e09 (patch) | |
| tree | 7092220d6af18cdb16ce5444b081c58ca8b6baae /Lib/distutils/command/install.py | |
| parent | 992fe5a83ed00c2f78cafe6bd397455a959508f6 (diff) | |
| download | cpython-c566232c4dbfbeda855e8721ced5fef55ab60e09.zip cpython-c566232c4dbfbeda855e8721ced5fef55ab60e09.tar.gz cpython-c566232c4dbfbeda855e8721ced5fef55ab60e09.tar.bz2 | |
Fixed install directory for header files on Unix.
Diffstat (limited to 'Lib/distutils/command/install.py')
| -rw-r--r-- | Lib/distutils/command/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 7176fab..21d971b 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -18,7 +18,7 @@ INSTALL_SCHEMES = { 'unix_prefix': { 'purelib': '$base/lib/python$py_version_short/site-packages', 'platlib': '$platbase/lib/python$py_version_short/site-packages', - 'headers': '$base/include/python/$py_version_short/$dist_name', + 'headers': '$base/include/python$py_version_short/$dist_name', 'scripts': '$base/bin', 'data' : '$base/share', }, |
