Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | (core-8-branch merge) Fix automatic pkgIndex generation for multiplatform installs. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
fa308cbee6e6645fa199373f71f6816d |
User & Date: | apnadkarni 2019-03-07 14:20:10.936 |
Original Comment: | (core-8-branch merge) Fix automatic pkgIndex generation for multiplatform installs. Plus Jan's checkins: - but ... don't call Tcl_GetObjResult() twice - Better fix, not hackish any-more, but retaining the original idea |
Context
2019-03-07
| ||
22:03 | Merge 8.7 check-in: d6eb82a174 user: jan.nijtmans tags: trunk | |
14:20 | (core-8-branch merge) Fix automatic pkgIndex generation for multiplatform installs. check-in: fa308cbee6 user: apnadkarni tags: trunk | |
14:17 | (core-8-6-branch merge) Fix automatic pkgIndex generation for multiplatform installs. check-in: d48cced50f user: apnadkarni tags: core-8-branch | |
08:39 | Merge 8.7 check-in: feb76896c3 user: jan.nijtmans tags: trunk | |
Changes
Changes to win/rules.vc.
︙ | ︙ | |||
1498 1499 1500 1501 1502 1503 1504 | !ifndef DEFAULT_BUILD_TARGET DEFAULT_BUILD_TARGET = $(PROJECT) !endif default-target: $(DEFAULT_BUILD_TARGET) | | | 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 | !ifndef DEFAULT_BUILD_TARGET DEFAULT_BUILD_TARGET = $(PROJECT) !endif 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 !else default-pkgindex: @echo package ifneeded $(PRJ_PACKAGE_TCLNAME) $(DOTVERSION) \ [list load [file join $$dir $(PRJLIBNAME)]] > $(OUT_DIR)\pkgIndex.tcl |
︙ | ︙ |