summaryrefslogtreecommitdiff
path: root/Lib/distutils/command/install.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-06-17 01:34:45 +0000
committerGreg Ward <gward@python.net>2000-06-17 01:34:45 +0000
commitc566232c4dbfbeda855e8721ced5fef55ab60e09 (patch)
tree7092220d6af18cdb16ce5444b081c58ca8b6baae /Lib/distutils/command/install.py
parent992fe5a83ed00c2f78cafe6bd397455a959508f6 (diff)
downloadcpython-git-c566232c4dbfbeda855e8721ced5fef55ab60e09.tar.gz
Fixed install directory for header files on Unix.
Diffstat (limited to 'Lib/distutils/command/install.py')
-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 7176fab890..21d971b8d3 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',
},