[Wisp-cvs] wisp/users/dig make-pe-exe.py,1.44,1.45
Status: Alpha
Brought to you by:
digg
|
From: <di...@us...> - 2003-05-13 18:00:23
|
Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv31367
Modified Files:
make-pe-exe.py
Log Message:
don't link result of make_mz_prefix before returning
Index: make-pe-exe.py
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/make-pe-exe.py,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- make-pe-exe.py 13 May 2003 17:56:07 -0000 1.44
+++ make-pe-exe.py 13 May 2003 18:00:17 -0000 1.45
@@ -60,7 +60,6 @@
b.emit_string(message)
b.place_symbol('#mz/bytes-in-last-block', b.filesz() % 0x200)
b.place_symbol('#mz/blocks-in-file', (b.filesz() + 0x1FF) / 0x200)
- b.link()
return b
def make_coff_header ():
|