WAF: configure dynamic path for the cygwin platform.
authorGustavo J. A. M. Carneiro <gjc@inescporto.pt>
Thu, 21 Jun 2007 00:38:58 +0100
changeset 785 bf8e7773836a
parent 784 a3f6b5783790
child 786 78982ea24359
child 896 9abc108e9817
WAF: configure dynamic path for the cygwin platform.
wscript
--- a/wscript	Tue Jun 19 16:59:44 2007 +0100
+++ b/wscript	Thu Jun 21 00:38:58 2007 +0100
@@ -142,6 +142,9 @@
     elif sys.platform == 'win32':
         pathvar = 'PATH'
         pathsep = ';'
+    elif sys.platform == 'cygwin':
+        pathvar = 'PATH'
+        pathsep = ':'
     else:
         Params.warning(("Don't know how to configure "
                         "dynamic library path for the platform '%s'") % (sys.platform,))