[Python-checkins] python/dist/src/Tools/freeze freeze.py,1.45,1.46 (original) (raw)
niemeyer at users.sourceforge.net niemeyer at users.sourceforge.net
Sat May 8 13:59:46 EDT 2004
- Previous message: [Python-checkins] get a diploma without going back to school
- Next message: [Python-checkins] python/dist/src/Modules itertoolsmodule.c, 1.32, 1.33
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Update of /cvsroot/python/python/dist/src/Tools/freeze In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15061
Modified Files: freeze.py Log Message: Small fixes in freeze.py.
Index: freeze.py
RCS file: /cvsroot/python/python/dist/src/Tools/freeze/freeze.py,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** freeze.py 26 May 2003 23:52:30 -0000 1.45 --- freeze.py 8 May 2004 17:59:43 -0000 1.46
*** 229,233 **** config_c_in = os.path.join(prefix, 'Modules', 'config.c.in') frozenmain_c = os.path.join(prefix, 'Python', 'frozenmain.c') ! makefile_in = os.path.join(exec_prefix, 'Modules', 'Makefile') if win: frozendllmain_c = os.path.join(exec_prefix, 'Pc\frozen_dllmain.c') --- 229,233 ---- config_c_in = os.path.join(prefix, 'Modules', 'config.c.in') frozenmain_c = os.path.join(prefix, 'Python', 'frozenmain.c') ! makefile_in = os.path.join(exec_prefix, 'Makefile') if win: frozendllmain_c = os.path.join(exec_prefix, 'Pc\frozen_dllmain.c')
*** 462,467 **** if os.path.exists(makefile_in): makevars = parsesetup.getmakevars(makefile_in) ! for key in makevars.keys(): ! somevars[key] = makevars[key]
somevars['CFLAGS'] = ' '.join(cflags) # override
--- 462,467 ---- if os.path.exists(makefile_in): makevars = parsesetup.getmakevars(makefile_in) ! for key in makevars.keys(): ! somevars[key] = makevars[key]
somevars['CFLAGS'] = ' '.join(cflags) # override
- Previous message: [Python-checkins] get a diploma without going back to school
- Next message: [Python-checkins] python/dist/src/Modules itertoolsmodule.c, 1.32, 1.33
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]