Artifact a32606647f5ad75f2051e9a1633518e6e9ef2439:
- File tcl/patchscripts/static-kitdll-noextern.sh — part of check-in [39588a62db] at 2016-03-20 07:35:09 on branch trunk — Updated to not mark anything as external if we are building a static KitDLL (user: rkeene, size: 356) [annotate] [blame] [check-ins using] [more...]
#! /bin/bash if [ "${KITTARGET}" != "kitdll" ]; then exit 0 fi if [ "${KITCREATOR_STATIC_KITDLL}" != '1' ]; then exit 0 fi # For a static KitDLL we are linking directly to the object # so there is nothing external. sed 's/define EXTERN .*/define EXTERN/' generic/tcl.h > generic/tcl.h.new cat generic/tcl.h.new > generic/tcl.h rm -f generic/tcl.h.new