diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-10-05 09:26:29 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-10-05 09:26:29 (GMT) |
commit | fb269f8f3fe5ffdafaae7c88c6957599cd99dd00 (patch) | |
tree | cd3183aec912e9ff854f21ab28ae0a483e6ad75b /win | |
parent | 8cfade5b0fa56912715446ea7a2dd1958cc214f0 (diff) | |
parent | 9cac91e2eb9f49a1227ec078f49d8130706a6125 (diff) | |
download | tcl-fb269f8f3fe5ffdafaae7c88c6957599cd99dd00.zip tcl-fb269f8f3fe5ffdafaae7c88c6957599cd99dd00.tar.gz tcl-fb269f8f3fe5ffdafaae7c88c6957599cd99dd00.tar.bz2 |
Use "cygpath -m" in stead of "cygpath -w", so paths (even windows ones) always have forward slashes. Suggested by pooryorick for [http://core.tcl.tk/tclconfig/tktview/06f1692bbe29449ac3f2161ebf9dd153d0349845|TEA], but a good idea anyway
Diffstat (limited to 'win')
-rwxr-xr-x | win/configure | 2 | ||||
-rw-r--r-- | win/tcl.m4 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/win/configure b/win/configure index c510b71..4ca795c 100755 --- a/win/configure +++ b/win/configure @@ -3300,7 +3300,7 @@ do test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CYGPATH="cygpath -w" + ac_cv_prog_CYGPATH="cygpath -m" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi @@ -559,7 +559,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ EXTRA_CFLAGS="" AC_DEFINE(MODULE_SCOPE, [extern], [No need to mark inidividual symbols as hidden]) - AC_CHECK_PROG(CYGPATH, cygpath, cygpath -w, echo) + AC_CHECK_PROG(CYGPATH, cygpath, cygpath -m, echo) SHLIB_SUFFIX=".dll" |