summaryrefslogtreecommitdiffstats
path: root/unix/configure
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-03-04 20:10:52 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-03-04 20:10:52 (GMT)
commitcc4159c6a8f0e151fb525f520e881b1a4489fa31 (patch)
tree9afc4e1dacbe79c15453d91894d0b49cfe4a24dc /unix/configure
parent3e6b82e43dc7f5a4ecf1551821be069a9cf26c27 (diff)
parenteffe2a1b1a9c861987fadc21883ecbd73bff9f5b (diff)
downloadtcl-cc4159c6a8f0e151fb525f520e881b1a4489fa31.zip
tcl-cc4159c6a8f0e151fb525f520e881b1a4489fa31.tar.gz
tcl-cc4159c6a8f0e151fb525f520e881b1a4489fa31.tar.bz2
(minor) fix for [1b8a893ded]: TCL_PACKAGE_PATH path is (wrongly) braced
Diffstat (limited to 'unix/configure')
-rwxr-xr-xunix/configure6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/configure b/unix/configure
index 87dc84d..d890135 100755
--- a/unix/configure
+++ b/unix/configure
@@ -19243,13 +19243,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"
else
- test -z "$TCL_PACKAGE_PATH" && TCL_PACKAGE_PATH="{${prefix}/lib} ${TCL_PACKAGE_PATH}"
+ test -z "$TCL_PACKAGE_PATH" && TCL_PACKAGE_PATH="${prefix}/lib"
fi
#--------------------------------------------------------------------