WAF: configure dynamic path for the cygwin platform.

This commit is contained in:
Gustavo J. A. M. Carneiro
2007-06-21 00:38:58 +01:00
parent 91aa5250de
commit 3012f74206

View File

@@ -142,6 +142,9 @@ def _run_argv(argv):
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,))