Differences From Artifact [774cb52df3]:
- File tcl/patchscripts/tcl-utf-max.sh — part of check-in [fe4c8bd979] at 2016-05-13 01:54:33 on branch trunk — Added TCL_UTF_MAX=6 build support (user: rkeene, size: 244) [annotate] [blame] [check-ins using]
To Artifact [22c18daa85]:
- File tcl/patchscripts/tcl-utf-max.sh — part of check-in [71bd41f921] at 2016-05-13 02:00:05 on branch trunk — Fix to build of TCL_UTF_MAX (user: rkeene, size: 243) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 9 10 11 |
#! /bin/bash
if [ -z "${KC_TCL_UTF_MAX}" ]; then
exit 0
fi
sed 's@^# *define TCL_UTF_MAX .*$@#define TCL_UTF_MAX '"${KC_TCL_UTF_MAX}"'@' generic/tcl.h > generic/tcl.h.new
cat generic/tcl.h.new > generic/tcl.h
rm -f generic/tcl.h.new
exit 0
|
| |
1 2 3 4 5 6 7 8 9 10 11 |
#! /bin/bash if [ -z "${KC_TCL_UTF_MAX}" ]; then exit 0 fi sed 's@^# *define TCL_UTF_MAX.*$@#define TCL_UTF_MAX '"${KC_TCL_UTF_MAX}"'@' generic/tcl.h > generic/tcl.h.new cat generic/tcl.h.new > generic/tcl.h rm -f generic/tcl.h.new exit 0 |