summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-06-17 01:34:45 (GMT)
committerGreg Ward <gward@python.net>2000-06-17 01:34:45 (GMT)
commitc566232c4dbfbeda855e8721ced5fef55ab60e09 (patch)
tree7092220d6af18cdb16ce5444b081c58ca8b6baae /Lib
parent992fe5a83ed00c2f78cafe6bd397455a959508f6 (diff)
downloadcpython-c566232c4dbfbeda855e8721ced5fef55ab60e09.zip
cpython-c566232c4dbfbeda855e8721ced5fef55ab60e09.tar.gz
cpython-c566232c4dbfbeda855e8721ced5fef55ab60e09.tar.bz2
Fixed install directory for header files on Unix.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/command/install.py2
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',
},