summaryrefslogtreecommitdiffstats
path: root/unix/configure.in
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-03-04 09:40:28 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-03-04 09:40:28 (GMT)
commit3e363b51d5cbb58cfba8d6375fe9190fd40f89dc (patch)
tree6d3b647fd42662159816335953cd570dd36f9c86 /unix/configure.in
parent899174261fca68ba566c1b2a0123f0359d38642b (diff)
downloadtcl-3e363b51d5cbb58cfba8d6375fe9190fd40f89dc.zip
tcl-3e363b51d5cbb58cfba8d6375fe9190fd40f89dc.tar.gz
tcl-3e363b51d5cbb58cfba8d6375fe9190fd40f89dc.tar.bz2
Proposed fix for [1b8a893ded]: TCL_PACKAGE_PATH path is (wrongly) braced.
Diffstat (limited to 'unix/configure.in')
-rw-r--r--unix/configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/configure.in b/unix/configure.in
index 4f62510..cc7d4df 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -864,13 +864,13 @@ VERSION=${TCL_VERSION}
if test "$FRAMEWORK_BUILD" = "1" ; then
test -z "$TCL_PACKAGE_PATH" && \
- TCL_PACKAGE_PATH="~/Library/Tcl /Library/Tcl ~/Library/Frameworks /Library/Frameworks"
+ TCL_PACKAGE_PATH="~/Library/Tcl:/Library/Tcl:~/Library/Frameworks:/Library/Frameworks"
test -z "$TCL_MODULE_PATH" && \
TCL_MODULE_PATH="~/Library/Tcl /Library/Tcl"
elif test "$prefix/lib" != "$libdir"; then
- test -z "$TCL_PACKAGE_PATH" && TCL_PACKAGE_PATH="{${libdir}} {${prefix}/lib} ${TCL_PACKAGE_PATH}"
+ test -z "$TCL_PACKAGE_PATH" && TCL_PACKAGE_PATH="${libdir}:${prefix}/lib:${TCL_PACKAGE_PATH}"
else
- test -z "$TCL_PACKAGE_PATH" && TCL_PACKAGE_PATH="{${prefix}/lib} ${TCL_PACKAGE_PATH}"
+ test -z "$TCL_PACKAGE_PATH" && TCL_PACKAGE_PATH="${prefix}/lib:${TCL_PACKAGE_PATH}"
fi
#--------------------------------------------------------------------