Make desktutils/ical building again.

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
This commit is contained in:
Edwin Groothuis 2002-11-15 07:03:00 +00:00
parent dc1d9dadaa
commit 07c05f9dcf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=70151

View file

@ -0,0 +1,11 @@
--- 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