diff options
author | Guido van Rossum <guido@python.org> | 2000-09-22 15:38:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-09-22 15:38:21 (GMT) |
commit | ff555e383d41e1069e9943dbabad227a1d9065bb (patch) | |
tree | 232669af8a2d7aad15a34f03ad26becf8b008114 /Makefile.in | |
parent | ef5f2b9dbbfade547daf1e360371a59e80006462 (diff) | |
download | cpython-ff555e383d41e1069e9943dbabad227a1d9065bb.zip cpython-ff555e383d41e1069e9943dbabad227a1d9065bb.tar.gz cpython-ff555e383d41e1069e9943dbabad227a1d9065bb.tar.bz2 |
Address Bug #115057: add a --with-suffix option to set the EXE
variable in the Makefiles from the configure script. Usefil for
Cygwin and Mac OS X builds.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index f1d37ed..aa7cf8d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -89,8 +89,8 @@ DESTSHARED= $(BINLIBDEST)/lib-dynload # Shell used by make (some versions default to the login shell, which is bad) SHELL= /bin/sh -# Use ``EXE=.exe'' for Unix emulations on DOS/Windows (e.g. GNUWIN32) -EXE= +# Executable suffix (.exe on Windows and Mac OS X) +EXE= @EXE@ # Modes for directories, executables and data files created by the # install process. Default to user-only-writable for all file types. |