[Wisp-cvs] wisp/users/dig make-pe-exe.py,1.31,1.32
Status: Alpha
Brought to you by:
digg
From: <di...@us...> - 2003-05-10 19:23:34
|
Update of /cvsroot/wisp/wisp/users/dig In directory sc8-pr-cvs1:/tmp/cvs-serv11486 Modified Files: make-pe-exe.py Log Message: a few references to %foo converted into references to &foo Index: make-pe-exe.py =================================================================== RCS file: /cvsroot/wisp/wisp/users/dig/make-pe-exe.py,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- make-pe-exe.py 10 May 2003 19:13:06 -0000 1.31 +++ make-pe-exe.py 10 May 2003 19:23:31 -0000 1.32 @@ -287,7 +287,7 @@ imports.place_symbol('&.imports/%s/first-thunk #rva' % dll) for sym in imports_by_dlls[dll].keys(): imports.place_symbol('&.imports/slot/' + sym + '@' + dll) - imports.emit_tetra_sum(['%.imports/thunk/' + sym + '@' + dll]) + imports.emit_tetra_sum(['&.imports/thunk/%s@%s #rva' % (sym, dll)]) imports.emit_tetra(0) # emit thunk structures for dll in imports_by_dlls.keys(): |