117724f21a94ff32f773af4c37be88fe0d2970e3~suv--- Makefile.pre.in.orig 2008-09-22 10:22:44.000000000 +1000
117724f21a94ff32f773af4c37be88fe0d2970e3~suv+++ Makefile.pre.in 2011-10-27 06:47:17.000000000 +1100
117724f21a94ff32f773af4c37be88fe0d2970e3~suv@@ -348,8 +348,8 @@
117724f21a94ff32f773af4c37be88fe0d2970e3~suv # Build the shared modules
117724f21a94ff32f773af4c37be88fe0d2970e3~suv sharedmods: $(BUILDPYTHON)
117724f21a94ff32f773af4c37be88fe0d2970e3~suv case $$MAKEFLAGS in \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv- *-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv- *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv+ *-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q --no-user-cfg build;; \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv+ *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py --no-user-cfg build;; \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv esac
117724f21a94ff32f773af4c37be88fe0d2970e3~suv
117724f21a94ff32f773af4c37be88fe0d2970e3~suv # Build static library
117724f21a94ff32f773af4c37be88fe0d2970e3~suv@@ -387,7 +387,7 @@
117724f21a94ff32f773af4c37be88fe0d2970e3~suv $(RESSRCDIR)/English.lproj/InfoPlist.strings
117724f21a94ff32f773af4c37be88fe0d2970e3~suv $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
117724f21a94ff32f773af4c37be88fe0d2970e3~suv if test "${UNIVERSALSDK}"; then \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv- $(CC) -o $(LDLIBRARY) -arch i386 -arch ppc -dynamiclib \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv+ $(CC) -o $(LDLIBRARY) __UNIVERSAL_LDFLAGS__ -dynamiclib \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv -isysroot "${UNIVERSALSDK}" \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv -all_load $(LIBRARY) -Wl,-single_module \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/Python \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv@@ -458,7 +458,7 @@
117724f21a94ff32f773af4c37be88fe0d2970e3~suv $(SIGNAL_OBJS) \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv $(MODOBJS) \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv $(srcdir)/Modules/getbuildinfo.c
117724f21a94ff32f773af4c37be88fe0d2970e3~suv- $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
117724f21a94ff32f773af4c37be88fe0d2970e3~suv+ $(CC) -c $(PY_CFLAGS) -DSVNVERSION="\"`LC_ALL=C $(SVNVERSION)`\"" -o $@ $(srcdir)/Modules/getbuildinfo.c
117724f21a94ff32f773af4c37be88fe0d2970e3~suv
117724f21a94ff32f773af4c37be88fe0d2970e3~suv Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
117724f21a94ff32f773af4c37be88fe0d2970e3~suv $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv@@ -894,7 +894,7 @@
117724f21a94ff32f773af4c37be88fe0d2970e3~suv # Install the dynamically loadable modules
117724f21a94ff32f773af4c37be88fe0d2970e3~suv # This goes into $(exec_prefix)
117724f21a94ff32f773af4c37be88fe0d2970e3~suv sharedinstall:
117724f21a94ff32f773af4c37be88fe0d2970e3~suv- $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv+ $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py --no-user-cfg install \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv --prefix=$(prefix) \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv --install-scripts=$(BINDIR) \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv --install-platlib=$(DESTSHARED) \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv@@ -968,7 +968,7 @@
117724f21a94ff32f773af4c37be88fe0d2970e3~suv # This installs a few of the useful scripts in Tools/scripts
117724f21a94ff32f773af4c37be88fe0d2970e3~suv scriptsinstall:
117724f21a94ff32f773af4c37be88fe0d2970e3~suv SRCDIR=$(srcdir) $(RUNSHARED) \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv- ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv+ ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py --no-user-cfg install \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv --prefix=$(prefix) \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv --install-scripts=$(BINDIR) \
117724f21a94ff32f773af4c37be88fe0d2970e3~suv --root=/$(DESTDIR)