]> git.saurik.com Git - wxWidgets.git/commitdiff
/dev/null may not exist, be smarter about it
authorRobin Dunn <robin@alldunn.com>
Fri, 5 Apr 2013 04:01:27 +0000 (04:01 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 5 Apr 2013 04:01:27 +0000 (04:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73779 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/stc/gen_iface.py

index 9db059ea9fe5007f00049e7dd8690ff2faffe283..1ed1ce7b1435baa982cad13b948ad889cb251be6 100755 (executable)
@@ -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)