[Wisp-cvs] wisp/users/dig make-pe-exe.py,1.29,1.30
Status: Alpha
Brought to you by:
digg
From: <di...@us...> - 2003-05-10 19:07:12
|
Update of /cvsroot/wisp/wisp/users/dig In directory sc8-pr-cvs1:/tmp/cvs-serv5144 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.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- make-pe-exe.py 10 May 2003 19:05:45 -0000 1.29 +++ make-pe-exe.py 10 May 2003 19:07:08 -0000 1.30 @@ -285,7 +285,7 @@ # emit thunk lists for dll in imports_by_dlls.keys(): imports.align(4) - imports.place_symbol('%.imports/' + dll + '/first-thunk') + 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]) |