diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2015-10-06 09:36:34 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2015-10-06 09:36:34 (GMT) |
commit | 7a4f67c93753a50d63a5504b1c89942b62d7b944 (patch) | |
tree | 7512f7b63d2ed8b8098e75c1bf049a4dbe51ecea | |
parent | 2413091754dec7542fd109902342d9eb53a82713 (diff) | |
parent | bc35fd42cb2b5f73c96f1a120e4e155176b06f88 (diff) | |
download | tcl-7a4f67c93753a50d63a5504b1c89942b62d7b944.zip tcl-7a4f67c93753a50d63a5504b1c89942b62d7b944.tar.gz tcl-7a4f67c93753a50d63a5504b1c89942b62d7b944.tar.bz2 |
Revise content of generate win/tclConfig.sh: Make sure that all entries use windows paths with forward slashes.
-rw-r--r-- | win/configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/configure.in b/win/configure.in index fc487d0..9e9df90 100644 --- a/win/configure.in +++ b/win/configure.in @@ -290,19 +290,19 @@ TCL_SHARED_LIB_SUFFIX="\${NODOT_VERSION}${DLLSUFFIX}" TCL_UNSHARED_LIB_SUFFIX="\${NODOT_VERSION}${LIBSUFFIX}" TCL_EXPORT_FILE_SUFFIX="\${NODOT_VERSION}${LIBSUFFIX}" -eval "TCL_SRC_DIR=\"`cd $srcdir/..; pwd`\"" +eval "TCL_SRC_DIR=\"`cd $srcdir/..; $CYGPATH $(pwd)`\"" eval "TCL_DLL_FILE=tcl${VER}${DLLSUFFIX}" eval "TCL_STUB_LIB_FILE=\"${LIBPREFIX}tclstub${VER}${LIBSUFFIX}\"" eval "TCL_STUB_LIB_FLAG=\"-ltclstub${VER}${LIBFLAGSUFFIX}\"" -eval "TCL_BUILD_STUB_LIB_SPEC=\"-L`pwd` ${TCL_STUB_LIB_FLAG}\"" +eval "TCL_BUILD_STUB_LIB_SPEC=\"-L`$CYGPATH $(pwd)` ${TCL_STUB_LIB_FLAG}\"" eval "TCL_STUB_LIB_SPEC=\"-L${libdir} ${TCL_STUB_LIB_FLAG}\"" -eval "TCL_BUILD_STUB_LIB_PATH=\"`pwd`/${TCL_STUB_LIB_FILE}\"" +eval "TCL_BUILD_STUB_LIB_PATH=\"`$CYGPATH $(pwd)`/${TCL_STUB_LIB_FILE}\"" eval "TCL_STUB_LIB_PATH=\"${libdir}/${TCL_STUB_LIB_FILE}\"" eval "TCL_LIB_FILE=\"${LIBPREFIX}tcl${VER}${LIBSUFFIX}\"" -eval "TCL_BUILD_LIB_SPEC=\"-L`pwd` -ltcl${VER}${FLAGSUFFIX}\"" +eval "TCL_BUILD_LIB_SPEC=\"-L`$CYGPATH $(pwd)` -ltcl${VER}${FLAGSUFFIX}\"" eval "TCL_LIB_SPEC=\"-L${libdir} -ltcl${VER}${FLAGSUFFIX}\"" # Install time header dir can be set via --includedir |