mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
07c05f9dcf
This was a tricky thing and I suspect this is caused by the new tcl83 package rolled out. What happens is that lib/tcl8.3/tclConfig.sh has this line in it: TCL_LIB_FILE='libtcl83${TCL_DBGX}.so.1' The single ticks TCL_DBGX not to be expanded, that's okay. But the configure-script didn't evaluate the variable once it got it from the tclConfig.sh script. Noticed by: bento
12 lines
427 B
Plaintext
12 lines
427 B
Plaintext
--- configure.orig Fri Nov 15 17:59:05 2002
|
|
+++ configure Fri Nov 15 17:59:20 2002
|
|
@@ -1327,6 +1327,8 @@
|
|
#### Load the Tcl/Tk configuration files
|
|
. $tclconfig/tclConfig.sh
|
|
. $tkconfig/tkConfig.sh
|
|
+TCL_LIB_FILE=`eval "echo ${TCL_LIB_FILE}"`
|
|
+TK_LIB_FILE=`eval "echo ${TK_LIB_FILE}"`
|
|
|
|
if test -z "$TCL_EXEC_PREFIX"; then TCL_EXEC_PREFIX="$TCL_PREFIX"; fi
|
|
if test -z "$TK_EXEC_PREFIX"; then TK_EXEC_PREFIX="$TK_PREFIX"; fi
|