Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 2913 - TCL installation: quoting in /usr/lib/tclConfig.sh
Summary: TCL installation: quoting in /usr/lib/tclConfig.sh
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Library (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Karl Trygve Kalleberg (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-05-22 08:39 UTC by Jean Jordaan
Modified: 2002-06-24 18:23 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jean Jordaan 2002-05-22 08:39:52 UTC
'./configure' on a package using tcl was choking on a literal (i.e.
unsubstituted) 
"libtcl8.3${TCL_DBGX}.so" until I made this change:

-------------------------------------------------------------------
jean@blommie $ diff -u 
/usr/lib/tclConfig.sh~ /usr/lib/tclConfig.sh
--- /usr/lib/tclConfig.sh~      Wed May 22 
15:29:53 2002
+++ /usr/lib/tclConfig.sh       Wed May 22 15:30:34 2002
@@ -39,7 +39,7 @@
 
TCL_SHARED_BUILD=1
 
 # The name of the Tcl library (may be either a .a file or a shared 
library):
-
TCL_LIB_FILE='libtcl8.3${TCL_DBGX}.so'
+TCL_LIB_FILE="libtcl8.3${TCL_DBGX}.so"
 

 # Flag to indicate whether shared libraries need export files.
 TCL_NEEDS_EXP_FILE=0

-------------------------------------------------------------------


Is that something that could be fixed by the ebuild during installation?
Comment 1 Karl Trygve Kalleberg (RETIRED) gentoo-dev 2002-05-23 12:42:50 UTC
I'll look into it and see if it doesn't break anything else.
Comment 2 Karl Trygve Kalleberg (RETIRED) gentoo-dev 2002-06-24 18:23:24 UTC
Fixed now. I hope this doesn't prove to be a nasty "blows up in your face later"
kinda problem.