diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-07 13:53:21 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-07 13:53:21 (GMT) |
commit | cf333de0987ad12a325909be7ae372f50d2d28a1 (patch) | |
tree | bf529cb7a46fe0bd7cb7e7858f9812eb08133d9d /win/rules.vc | |
parent | fc71c7c2fce04d50b5c1baa8306a02510bc30f73 (diff) | |
download | tcl-cf333de0987ad12a325909be7ae372f50d2d28a1.zip tcl-cf333de0987ad12a325909be7ae372f50d2d28a1.tar.gz tcl-cf333de0987ad12a325909be7ae372f50d2d28a1.tar.bz2 |
rules.vc: Make sure that 3th "load" argument is titlecased in pkgIndex.tcl
Diffstat (limited to 'win/rules.vc')
-rw-r--r-- | win/rules.vc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/rules.vc b/win/rules.vc index c70effb..a0084a4 100644 --- a/win/rules.vc +++ b/win/rules.vc @@ -6,7 +6,7 @@ # compiler switches, defining common targets and macros. The Tcl makefile
# directly includes this. Extensions include it via "rules-ext.vc".
#
-# See TIP 477 (https://core.tcl-lang.org/tips/doc/trunk/tip/477.md) for
+# See TIP 477 (https://core.tcl-lang.org/tips/doc/main/tip/477.md) for
# detailed documentation.
#
# See the file "license.terms" for information on usage and redistribution
@@ -1565,11 +1565,11 @@ default-target: $(DEFAULT_BUILD_TARGET) !if $(MULTIPLATFORM_INSTALL)
default-pkgindex:
@echo package ifneeded $(PRJ_PACKAGE_TCLNAME) $(DOTVERSION) \
- [list load [file join $$dir $(PLATFORM_IDENTIFY) $(PRJLIBNAME)]] > $(OUT_DIR)\pkgIndex.tcl
+ [list load [file join $$dir $(PLATFORM_IDENTIFY) $(PRJLIBNAME)] [string totitle $(PRJ_PACKAGE_TCLNAME)]] > $(OUT_DIR)\pkgIndex.tcl
!else
default-pkgindex:
@echo package ifneeded $(PRJ_PACKAGE_TCLNAME) $(DOTVERSION) \
- [list load [file join $$dir $(PRJLIBNAME)]] > $(OUT_DIR)\pkgIndex.tcl
+ [list load [file join $$dir $(PRJLIBNAME)] [string totitle $(PRJ_PACKAGE_TCLNAME)]] > $(OUT_DIR)\pkgIndex.tcl
!endif
default-pkgindex-tea:
|