Move waf into third_party/.
[samba.git] / third_party / waf / wafadmin / Tools / msvc.py
similarity index 99%
rename from buildtools/wafadmin/Tools/msvc.py
rename to third_party/waf/wafadmin/Tools/msvc.py
index 4fde8b14687999cc6d49d232d4f99626408417f5..2a97d19a7ebca93a9529575594470f29db677c29 100644 (file)
@@ -729,15 +729,15 @@ def exec_mf(self):
        self.do_manifest = False
 
        outfile = self.outputs[0].bldpath(env)
-       
+
        manifest = None
        for out_node in self.outputs:
                if out_node.name.endswith('.manifest'):
                        manifest = out_node.bldpath(env)
                        break
        if manifest is None:
-               # Should never get here.  If we do, it means the manifest file was 
-               # never added to the outputs list, thus we don't have a manifest file 
+               # Should never get here.  If we do, it means the manifest file was
+               # never added to the outputs list, thus we don't have a manifest file
                # to embed, so we just return.
                return 0
 
@@ -794,4 +794,3 @@ for k in 'cc cxx winrc cc_link cxx_link static_link qxx'.split():
        cls = Task.TaskBase.classes.get(k, None)
        if cls:
                cls.exec_command = exec_command_msvc
-