X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/743e91ff022cfe170bf34214908336ecd6da3579..f9e45bd7de9f91efec4edbc0889ea6b2903eaa90:/wxPython/my_distutils.py

diff --git a/wxPython/my_distutils.py b/wxPython/my_distutils.py
index aa0c183e6b..cbff3b4e99 100644
--- a/wxPython/my_distutils.py
+++ b/wxPython/my_distutils.py
@@ -54,15 +54,15 @@ class MyMSVCCompiler(MSVCCompiler):
                 self.mkpath (os.path.dirname (obj))
 
                 if ext in self._c_extensions:
-                    input_opt = "/Tc" + os.path.abspath(src)
+                    input_opt = "/Tc" + os.path.abspath(src)    ### RPD
                 elif ext in self._cpp_extensions:
-                    input_opt = "/Tp" + os.path.abspath(src)
+                    input_opt = "/Tp" + os.path.abspath(src)    ### RPD
                 elif ext in self._rc_extensions:
                     # compile .RC to .RES file
                     input_opt = src
                     output_opt = "/fo" + obj
                     try:
-                        self.spawn ([self.rc] + pp_opts +         ### RPD changed this line only
+                        self.spawn ([self.rc] + pp_opts +         ### RPD changed this line
                                     [output_opt] + [input_opt])
                     except DistutilsExecError, msg:
                         raise CompileError, msg