diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-05-09 10:08:56 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-05-09 10:08:56 (GMT) |
commit | 777fc1f403ce2dd7dcf46cc42a059b0fe6363882 (patch) | |
tree | c2b9e021f45991a892e34378e871dcca9b40750c /unix/configure | |
parent | 8c081b3c39faeaf973eb300f8b269e403fa6107a (diff) | |
download | tcl-777fc1f403ce2dd7dcf46cc42a059b0fe6363882.zip tcl-777fc1f403ce2dd7dcf46cc42a059b0fe6363882.tar.gz tcl-777fc1f403ce2dd7dcf46cc42a059b0fe6363882.tar.bz2 |
Make Cygwin's "configure" work from another directory than /unix. (Not everything works this way!)
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/configure b/unix/configure index 02a3725..d268647 100755 --- a/unix/configure +++ b/unix/configure @@ -7010,9 +7010,9 @@ echo "$as_me: error: CYGWIN compile is only supported with --enable-threads" >&2 fi do64bit_ok=yes if test "x${SHARED_BUILD}" = "x1"; then - echo "running cd ../win; ${CONFIG_SHELL-/bin/sh} ./configure $ac_configure_args" + echo "running cd ${TCL_SRC_DIR}/win; ${CONFIG_SHELL-/bin/sh} ./configure $ac_configure_args" # The eval makes quoting arguments work. - if cd ../win; eval ${CONFIG_SHELL-/bin/sh} ./configure $ac_configure_args; cd ../unix + if cd ${TCL_SRC_DIR}/win; eval ${CONFIG_SHELL-/bin/sh} ./configure $ac_configure_args; cd ../unix then : else { echo "configure: error: configure failed for ../win" 1>&2; exit 1; } |