This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author htnieman
Recipients htnieman
Date 2015-08-21.11:20:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440156019.56.0.0846148968613.issue24908@psf.upfronthosting.co.za>
In-reply-to
Content
Lib\sysconfig.py uses '{installed_base}/Include'
as the include directory on Windows, 

Lib\distutils\sysconfig.py uses 
elif os.name == "nt":
        return os.path.join(prefix, "include")

which is normally harmless because windows file systems
are case-preserving, but case-ignoring, but it leads to
a warning from pyinstaller:
https://github.com/pyinstaller/pyinstaller/issues/783

The directory referred to has a lowercase i (on my machine).

In my opinion both modules should use the spelling
that the installer uses when creating the directories.
History
Date User Action Args
2015-08-21 11:20:19htniemansetrecipients: + htnieman
2015-08-21 11:20:19htniemansetmessageid: <1440156019.56.0.0846148968613.issue24908@psf.upfronthosting.co.za>
2015-08-21 11:20:19htniemanlinkissue24908 messages
2015-08-21 11:20:18htniemancreate