]> git.saurik.com Git - apple/security.git/blame - SecuritySNACCRuntime/tcl-lib/make-snacced
Security-28.tar.gz
[apple/security.git] / SecuritySNACCRuntime / tcl-lib / make-snacced
CommitLineData
bac41a7b
A
1#!/bin/sh
2
3if [ $# -ne 3 ]; then
4 echo "usage: $0 script wish tcldir" 1>&2
5 exit 1
6fi
7
8set -e
9
10exec 1> "$1"
11
12echo "#!$2 -f"
13echo "set auto_path [linsert \$auto_path 0 $3]"
14echo "snacced"
15
16chmod +x "$1"