git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33964
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
# dirs as includes so we don't have to guess which is correct.
wxfilesdir = ""
# dirs as includes so we don't have to guess which is correct.
wxfilesdir = ""
-i_subdir = opj("include", "wx", "wxPython", "i_files")
+i_subdir = opj("include", getExtraPath(), "wx", "wxPython", "i_files")
if os.name != "nt":
wxfilesdir = opj(WXPREFIX, i_subdir)
else:
if os.name != "nt":
wxfilesdir = opj(WXPREFIX, i_subdir)
else:
# BuildRenamers
####################################
# BuildRenamers
####################################
try:
import libxml2
FOUND_LIBXML2 = True
try:
import libxml2
FOUND_LIBXML2 = True
# blow away the old one if they are different.
for dest, temp in [(swigDest, swigDestTemp),
(pyDest, pyDestTemp)]:
# blow away the old one if they are different.
for dest, temp in [(swigDest, swigDestTemp),
(pyDest, pyDestTemp)]:
+ # NOTE: we don't use shutil.move() because it was introduced
+ # in Python 2.3. Eventually we can switch to it when people
+ # stop building using 2.2.
if not os.path.exists(dest):
if not os.path.exists(dest):
+ shutil.copyfile(temp, dest)
elif open(dest).read() != open(temp).read():
os.unlink(dest)
elif open(dest).read() != open(temp).read():
os.unlink(dest)
+ shutil.copyfile(temp, dest)
else:
print dest + " not changed."
os.unlink(temp)
else:
print dest + " not changed."
os.unlink(temp)