Overview
Comment: | Updated "make test" to not try to run sed on binary files |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9aad02dffb88206c054b7ca2adeb73ef |
User & Date: | rkeene on 2014-06-21 15:31:30 |
Other Links: | manifest | tags |
Context
2014-06-21
| ||
15:43 | Updated to name Test TCL script something other than "test" so it does not conflict with the "test" target in Make check-in: ecb01f7ca0 user: rkeene tags: trunk | |
15:31 | Updated "make test" to not try to run sed on binary files check-in: 9aad02dffb user: rkeene tags: trunk | |
14:49 | Updated to link to stubs check-in: 82593f3a0f user: rkeene tags: trunk | |
Changes
Modified Makefile.in from [2c6027ccbc] to [ce45af3001].
︙ | |||
86 87 88 89 90 91 92 | 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | - + + + + + + + | cp "$$src" "$$dst"; \ done $(srcdir)/patch-headers.sh "$(DESTDIR)$(PACKAGE_INSTALL_DIR)/include" test: rm -rf __TMP__ $(MAKE) install tcllibdir=$(shell pwd)/__TMP__ |
︙ |
Modified build/makearch.info from [503b441ed0] to [5ff636f2e3].
︙ | |||
26 27 28 29 30 31 32 | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | - + | # @@VERS@@ becomes the utility version # @@DATE@@ becomes the current date DOCS="README" DOC_HDR="HEADER" # These files follow the same convention as DOCS, but don't have the header # tacked onto them. |
︙ |
Modified tcc4tcl.c from [24c78e2cb7] to [927889c501].
︙ | |||
282 283 284 285 286 287 288 | 282 283 284 285 286 287 288 289 290 291 292 | - + - | int Tcc4tcl_Init(Tcl_Interp *interp) { #ifdef USE_TCL_STUBS if (Tcl_InitStubs(interp, "8.4" , 0) == 0L) { return TCL_ERROR; } #endif |
Modified tcc4tcl.tcl from [602c05c493] to [f0b650b1d1].
︙ | |||
391 392 393 394 395 396 397 | 391 392 393 394 395 396 397 398 399 | + + | append cbody "}" "\n" return [list $code $cbody $wname] } namespace eval tcc4tcl {namespace export cproc new} package provide tcc4tcl "@@VERS@@" |