Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add "make dist" target to Travis build, as regression test. This should continue to work. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | make-dist |
Files: | files | file ages | folders |
SHA3-256: |
17eda4527eb4165a9c88b3fb5591c3fe |
User & Date: | jan.nijtmans 2020-06-26 13:29:41.798 |
Context
2020-06-28
| ||
14:44 | Merge make-dist branch: Now travis checks regressions in "make dist" too check-in: 56c93291d3 user: jan.nijtmans tags: core-8-6-branch | |
2020-06-26
| ||
13:29 | Add "make dist" target to Travis build, as regression test. This should continue to work. Closed-Leaf check-in: 17eda4527e user: jan.nijtmans tags: make-dist | |
2020-06-25
| ||
12:58 | Merge 8.5 check-in: e6244e2d0e user: jan.nijtmans tags: core-8-6-branch | |
Changes
Changes to .travis.yml.
︙ | ︙ | |||
368 369 370 371 372 373 374 | - ./configure ${CFGOPT} "--prefix=$HOME/install dir" || (cat config.log && exit 1) before_script: - export ERROR_ON_FAILURES=1 script: - make all tcltest - make test - make install | > | 368 369 370 371 372 373 374 375 | - ./configure ${CFGOPT} "--prefix=$HOME/install dir" || (cat config.log && exit 1) before_script: - export ERROR_ON_FAILURES=1 script: - make all tcltest - make test - make install - make dist |
Changes to unix/installManPage.
︙ | ︙ | |||
95 96 97 98 99 100 101 | Name=`basename $ManPage .$Section` SrcDir=`dirname $ManPage` ######################################################################## ### Process Page to Create Target Pages ### | | | 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | Name=`basename $ManPage .$Section` SrcDir=`dirname $ManPage` ######################################################################## ### Process Page to Create Target Pages ### Specials="DString Thread Notifier RegExp library packagens pkgMkIndex safesock FindPhoto FontId MeasureChar" for n in $Specials; do if [ "$Name" = "$n" ] ; then Names="$n $Names" fi done First="" |
︙ | ︙ |