diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2015-10-05 09:23:12 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2015-10-05 09:23:12 (GMT) |
commit | d700472a92b5263af967ab49a71f667bac2974b2 (patch) | |
tree | 95aad6cf8fc8c53f0b6b0e24b0c3903a34af668e /win | |
parent | 66c9e9a2ffc0b6e6d7792c8567196a74939f0034 (diff) | |
download | tcl-d700472a92b5263af967ab49a71f667bac2974b2.zip tcl-d700472a92b5263af967ab49a71f667bac2974b2.tar.gz tcl-d700472a92b5263af967ab49a71f667bac2974b2.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 1dcc9d2..dc03e62 100755 --- a/win/configure +++ b/win/configure @@ -3288,7 +3288,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 @@ -558,7 +558,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ # Set some defaults (may get changed below) EXTRA_CFLAGS="" - AC_CHECK_PROG(CYGPATH, cygpath, cygpath -w, echo) + AC_CHECK_PROG(CYGPATH, cygpath, cygpath -m, echo) SHLIB_SUFFIX=".dll" |