From: Robin Dunn Date: Fri, 5 Apr 2013 04:01:27 +0000 (+0000) Subject: /dev/null may not exist, be smarter about it X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/cab16e6c94711a8efe506653716f56c4ca0f6ef1 /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 --- diff --git a/src/stc/gen_iface.py b/src/stc/gen_iface.py index 9db059ea9f..1ed1ce7b14 100755 --- a/src/stc/gen_iface.py +++ b/src/stc/gen_iface.py @@ -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,7 +999,8 @@ 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) - open(docstr_dest, 'w').write(docstrings) + if docstr_dest: + open(docstr_dest, 'w').write(docstrings) open(ih_dest, 'w').write(ih_text)