[ctypes-commit] ctypes/sandbox/tools/codegen h2xml.py,1.3,1.4
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2005-01-10 16:17:02
|
Update of /cvsroot/ctypes/ctypes/sandbox/tools/codegen In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22562 Modified Files: h2xml.py Log Message: The .exe extension doesn't work on linux ;-) Index: h2xml.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/sandbox/tools/codegen/h2xml.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** h2xml.py 17 Dec 2004 09:35:58 -0000 1.3 --- h2xml.py 10 Jan 2005 16:16:52 -0000 1.4 *************** *** 53,58 **** try: if verbose: ! print >> sys.stderr, r"gccxml.exe %s %s -fxml=%s" % (options, c_file, xml_file) ! i, o = os.popen4(r"gccxml.exe %s %s -fxml=%s" % (options, c_file, xml_file)) i.close() sys.stderr.write(o.read()) --- 53,58 ---- try: if verbose: ! print >> sys.stderr, r"gccxml %s %s -fxml=%s" % (options, c_file, xml_file) ! i, o = os.popen4(r"gccxml %s %s -fxml=%s" % (options, c_file, xml_file)) i.close() sys.stderr.write(o.read()) |