From: Ronald Oussoren Date: Sun, 17 Sep 2006 19:23:27 +0000 (+0000) Subject: Tweak Mac/Makefile in to ensure that pythonw gets rebuild when the major version X-Git-Tag: v2.6a1~2655 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6790f1aab8e4df3d66a5f16cc8266fd693507f1;p=thirdparty%2FPython%2Fcpython.git Tweak Mac/Makefile in to ensure that pythonw gets rebuild when the major version of python changes (2.5 -> 2.6). Bug #1552935. --- diff --git a/Mac/Makefile.in b/Mac/Makefile.in index 11f143862045..8b2e1dbabf87 100644 --- a/Mac/Makefile.in +++ b/Mac/Makefile.in @@ -101,7 +101,7 @@ install_versionedtools: fi -pythonw: $(srcdir)/Tools/pythonw.c +pythonw: $(srcdir)/Tools/pythonw.c Makefile $(CC) $(LDFLAGS) -o $@ $(srcdir)/Tools/pythonw.c \ -DPYTHONWEXECUTABLE='"$(APPINSTALLDIR)/Contents/MacOS/Python"' @@ -249,3 +249,6 @@ clean: rm pythonw cd PythonLauncher && make clean cd IDLE && make clean + +Makefile: $(srcdir)/Makefile.in ../config.status + cd .. && CONFIG_FILES=Mac/Makefile CONFIG_HEADERS= $(SHELL) ./config.status