summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authorsebres <sebres@users.sourceforge.net>2019-01-21 13:08:52 (GMT)
committersebres <sebres@users.sourceforge.net>2019-01-21 13:08:52 (GMT)
commit5560716098769d824114c07aa5e1c99c636c4174 (patch)
tree97492fe05dc2791fbdc4b5050f2eb192d0d2b486 /unix/Makefile.in
parent8f8efbe01114a7ce4a08211b4701377ef0fe49d7 (diff)
downloadtcl-5560716098769d824114c07aa5e1c99c636c4174.zip
tcl-5560716098769d824114c07aa5e1c99c636c4174.tar.gz
tcl-5560716098769d824114c07aa5e1c99c636c4174.tar.bz2
fixes creation of libtcl.vfs using links, if ln-command does not support "-t" option (avoids error "ln: illegal option -- t" and fallback to copy)
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 34a38d2..660b34f 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -682,7 +682,7 @@ ${TCL_ZIP_FILE}: ${ZIP_INSTALL_OBJS}
@mkdir -p ${TCL_VFS_PATH}
@echo "creating ${TCL_VFS_PATH} (prepare compression)"
@( \
- ln -st ${TCL_VFS_PATH} $(TOP_DIR)/library/* && \
+ ln -s $(TOP_DIR)/library/* ${TCL_VFS_PATH}/ && \
ln ${TCL_VFS_PATH}/manifest.txt ${TCL_VFS_PATH}/pkgIndex.tcl \
) || ( \
cp -a $(TOP_DIR)/library/* ${TCL_VFS_PATH}; \