Artifact f3e0ae44c2f68c18ebc9cd6c168f9468495607f6:
- File tcl/patchscripts/fix-static-pkgs.sh — part of check-in [97a1e6339f] at 2024-05-21 15:19:45 on branch trunk — Upgrade to Tcl/Tk 8.6.14 (user: schelte, size: 277) [annotate] [blame] [check-ins using]
#! /usr/bin/env bash for file in pkgs/tdbcodbc*/generic/tdbcodbc.c pkgs/tdbcmysql*/generic/tdbcmysql.c; do if [ ! -f "${file}" ]; then continue fi sed 's@^const.*LiteralValues@static &@' "${file}" > "${file}.new" cat "${file}.new" > "${file}" rm -f "${file}.new" done