Updated freeze.py to the new Makefile symbol layout.

Fixed a few compiler warnings.

freeze.py now produces binaries which can import shared
modules (unlike before).
This commit is contained in:
Marc-André Lemburg 2002-04-04 16:15:41 +00:00
parent 47834463d0
commit 64b4f2770e
4 changed files with 4 additions and 6 deletions

View file

@ -464,7 +464,7 @@ def main():
somevars['CFLAGS'] = string.join(cflags) # override
somevars['CPPFLAGS'] = string.join(cppflags) # override
files = ['$(OPT)', '$(LDFLAGS)', base_config_c, base_frozen_c] + \
files = [base_config_c, base_frozen_c] + \
files + supp_sources + addfiles + libs + \
['$(MODLIBS)', '$(LIBS)', '$(SYSLIBS)']