/dev/null may not exist, be smarter about it

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73779 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2013-04-05 04:01:27 +00:00
parent 3c4845b418
commit cab16e6c94

View File

@@ -26,7 +26,7 @@ CPP_DEST = os.path.abspath('./stc.cpp')
if len(sys.argv) > 1 and sys.argv[1] == '--wxpython':
DOCSTR_DEST = os.path.abspath('../../../wxPython/src/_stc_gendocs.i')
else:
DOCSTR_DEST = '/dev/null'
DOCSTR_DEST = None
# Value prefixes to convert
@@ -999,6 +999,7 @@ def processIface(iface, h_tmplt, cpp_tmplt, ih_tmplt, h_dest, cpp_dest, docstr_d
# write out destination files
open(h_dest, 'w').write(h_text)
open(cpp_dest, 'w').write(cpp_text)
if docstr_dest:
open(docstr_dest, 'w').write(docstrings)
open(ih_dest, 'w').write(ih_text)