From a7d9a543e587ffe84b355db7a2e8193bfe6c68b6 Mon Sep 17 00:00:00 2001
From: Mark Palange <palange@lindenlab.com>
Date: Fri, 6 Jun 2008 19:05:34 +0000
Subject: [PATCH] Changed the cygwin to windows path conversion to use 'cygpath
 -w'

---
 indra/develop.py | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/indra/develop.py b/indra/develop.py
index d3defbdba15..1f9b08c59c8 100755
--- a/indra/develop.py
+++ b/indra/develop.py
@@ -39,6 +39,7 @@
 import shutil
 import socket
 import sys
+import commands
 
 class CommandError(Exception):
     pass
@@ -535,16 +536,13 @@ def run_build(self, opts, targets):
             finally:
                 os.chdir(cwd)
                 
-    
 class CygwinSetup(WindowsSetup):
     def __init__(self):
         super(CygwinSetup, self).__init__()
         self.generator = 'vc71'
 
     def cmake_commandline(self, src_dir, build_dir, opts, simple):
-        dos_dir = src_dir.split('/')[2:]
-        dos_dir[0] = dos_dir[0] + ":"
-        dos_dir = '/'.join(dos_dir)
+        dos_dir = commands.getoutput("cygpath -w %s" % src_dir)
         args = dict(
             dir=dos_dir,
             generator=self.gens[self.generator.lower()]['gen'],
-- 
GitLab