first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / scripts / buildor / manifester.sh
1 #!/bin/bash
2 dir=$1
3 if [ -z "$dir" ]; then
4   echo this command needs one directory as a parameter.  all the exes in that
5   echo directory will be tagged with our security manifest.
6   exit 23
7 fi
8
9 for i in $dir/*.exe; do
10   mt -manifest $SHELLDIR/clam/cpp/security_manifest.txt -outputresource:$i\;\#1
11 done 
12