diff options
author | Guido van Rossum <guido@python.org> | 2007-02-09 05:32:43 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-02-09 05:32:43 +0000 |
commit | 5139e90991014c04ec72a22dcc2625152ce7e612 (patch) | |
tree | dfc9f79f7a5e3db4aa1a4371a5ae5a539aeba3d3 /Makefile.pre.in | |
parent | 6527d5914e21fb23438532a898afc34f37360c60 (diff) | |
download | cpython-5139e90991014c04ec72a22dcc2625152ce7e612.tar.gz |
Essential changes for print function changes.
Lib will be changed in a separate run.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index e4ee3dbda4..2ff605f915 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -341,7 +341,7 @@ $(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY) $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST) platform: $(BUILDPYTHON) - $(RUNSHARED) ./$(BUILDPYTHON) -E -c 'import sys ; from distutils.util import get_platform ; print get_platform()+"-"+sys.version[0:3]' >platform + $(RUNSHARED) ./$(BUILDPYTHON) -E -c 'import sys ; from distutils.util import get_platform ; print(get_platform()+"-"+sys.version[0:3])' >platform # Build the shared modules |