Artifact 42e62525bc6f5b4c3cb173956087d0238018310b:
- File tcl/patchscripts/visibility-unhidden.sh — part of check-in [4e8d261d38] at 2012-02-01 07:56:32 on branch trunk — Updated to call "/usr/bin/env" to locate "bash" in case it is not in "/bin" (user: rkeene, size: 236) [annotate] [blame] [check-ins using]
- File tk/patchscripts/visibility-unhidden.sh — part of check-in [4e8d261d38] at 2012-02-01 07:56:32 on branch trunk — Updated to call "/usr/bin/env" to locate "bash" in case it is not in "/bin" (user: rkeene, size: 236) [annotate] [blame] [check-ins using]
#! /usr/bin/env bash if [ "${KITTARGET}" != "kitdll" ]; then exit 0 fi for file in unix/configure; do sed 's@-fvisibility@-__disabled__fvisibility@' "${file}" > "${file}.new" cat "${file}.new" > "${file}" rm -f "${file}.new" done