Lines Matching full:cygpath
101 # 0 - do not use cygpath
102 # 1 - use cygpath
104 # Returns boolean true if 'cygpath' utility should be used for path conversion.
108 $use_cygpath = (qx{cygpath -u '.\\' 2>/dev/null} eq "./\n" && $? == 0);
143 # Do not use 'cygpath' - it falsely succeed on paths like '/cygdrive'.
205 # This type of paths is not processed correctly by 'cygpath'.
217 # resolved to absolute path by 'cygpath'.
219 # incorrectly processed by 'cygpath' (for paths like 'D:..\../.\')
232 # 'cygpath' is available - use it.
240 # Use 'cygpath', '-m' means Win32 path with forward slashes.
241 chomp($path = `cygpath -m '$path'`);
243 warn "Can't convert path by \"cygpath\".\n";
247 # 'cygpath' may remove last slash for existing directories.
250 # Remove any duplicated forward slashes (added by 'cygpath' for root
286 # form and 'cygpath' is not available.
309 # This kind of relative path is not processed correctly by 'cygpath'.
315 # Empty string processed correctly by 'cygpath'.
320 # 'cygpath' is available - use it.
329 # Use 'cygpath', '-m' means Win32 path with forward slashes,
331 chomp($path = `cygpath -m -a '$path'`);
333 warn "Can't resolve path by usung \"cygpath\".\n";
337 # 'cygpath' may remove last slash for existing directories.
340 # Remove any duplicated forward slashes (added by 'cygpath' for root
402 # form and 'cygpath' is not available.
429 # This kind of relative path is not processed correctly by 'cygpath'.
443 # Empty string processed correctly by 'cygpath'.
462 # 'cygpath' is available - use it.
472 # Use 'cygpath', '-u' means Unix-stile path,
474 chomp($path = `cygpath -u -a '$path'`);
476 warn "Can't resolve path by usung \"cygpath\".\n";
480 # 'cygpath' removes last slash if path is root dir on Win32 drive.
751 # 'cygpath' gives precise result.
753 chomp($res = `cygpath -a -u '$path'`);
760 # 'cygpath' removes last slash if path is root dir on Win32 drive.
766 # 'cygpath' is not available, use guessed transformation.