Add an underscore before the generated output names.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61444 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
e2075bf002
commit
edaadd8cd2
@ -18,7 +18,7 @@ class SIPBuilder:
|
||||
continue
|
||||
|
||||
header_name = aclass.name[2:].lower()
|
||||
filename = os.path.join(output_dir, header_name + ".sip")
|
||||
filename = os.path.join(output_dir, "_" + header_name + ".sip")
|
||||
enums_text = make_enums(aclass)
|
||||
method_text = self.make_sip_methods(aclass)
|
||||
base_class = get_first_value(aclass.bases)
|
||||
|
@ -18,7 +18,7 @@ class SWIGBuilder:
|
||||
#print "Skipping %s" % aclass.name
|
||||
continue
|
||||
|
||||
filename = os.path.join(output_dir, header_name + ".i")
|
||||
filename = os.path.join(output_dir, "_" + header_name + ".i")
|
||||
enums_text = make_enums(aclass)
|
||||
method_text = self.make_swig_methods(aclass)
|
||||
text = """
|
||||
|
Loading…
Reference in New Issue
Block a user