From: Greg Ward Date: Sat, 17 Jun 2000 01:34:45 +0000 (+0000) Subject: Fixed install directory for header files on Unix. X-Git-Tag: v2.0b1~1498 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c566232c4dbfbeda855e8721ced5fef55ab60e09;p=python Fixed install directory for header files on Unix. --- 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', },