diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-09-08 08:55:46 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-09-08 08:55:46 (GMT) |
commit | 853c52f3cfffe036ca059ed84f85ba958cbe6ca3 (patch) | |
tree | 686bab94ee58425b9050eb53d239237ff5d21127 /win | |
parent | 6a1aabe9f9811296bdd23283fc94829434b2c44a (diff) | |
download | tk-853c52f3cfffe036ca059ed84f85ba958cbe6ca3.zip tk-853c52f3cfffe036ca059ed84f85ba958cbe6ca3.tar.gz tk-853c52f3cfffe036ca059ed84f85ba958cbe6ca3.tar.bz2 |
"zipfs mount" has the mountpoint as last argument (according to TIP #430)
Diffstat (limited to 'win')
-rw-r--r-- | win/makefile.vc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 2648127..5a5929e 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -523,7 +523,7 @@ $(WISHSCRIPTZIP): $(TKSCRIPTZIP) @$(TCLSH) <<
cd {$(OUT_DIR)}
file delete -force {$@}
-zipfs mount mnt "$(TCLSCRIPTZIP:\=/)"
+zipfs mount "$(TCLSCRIPTZIP:\=/)" mnt
file copy [file join [zipfs root] mnt tcl_library] "$(LIBTKVFS:\=/)"
zipfs mkzip {$@} {$(LIBTKVFS)} {$(LIBTKVFS)}
<<
|