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.

classification
Title: Framework build fails if OS X on case-sensitive file system
Type: Stage:
Components: Build Versions: Python 3.0, Python 3.1, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: mark.dickinson, ned.deily
Priority: normal Keywords: patch

Created on 2008-12-18 08:49 by ned.deily, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
makefile-make.diff ned.deily, 2008-12-18 08:49
Messages (2)
msg78016 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2008-12-18 08:49
In the main python Makefile.pre.in, the frameworkinstallextras target, 
only used on OS X, has a bogus "Make" command instead of "$(MAKE)" as in 
other targets.  Traditionally and by default, the OS X root file system is 
case-insensitive, in which case "Make" coincidentally does invoke 
/usr/bin/make.  However, with OS X installed on a case-sensitive fs, the 
command fails.  One-liner patch attached.
msg78040 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2008-12-18 19:53
Fixed in r67844 (trunk), r67845 (2.6), r67846 (py3k) and r67847 (3.0).
Thanks for the report and patch!
History
Date User Action Args
2022-04-11 14:56:42adminsetgithub: 48942
2008-12-18 19:53:32mark.dickinsonsetstatus: open -> closed
resolution: fixed
messages: + msg78040
nosy: + mark.dickinson
versions: + Python 3.1, Python 2.7
2008-12-18 08:49:52ned.deilycreate