sbsv2/raptor/group/exports.sh
author yiluzhu
Tue, 26 Jan 2010 14:25:54 +0000
branchwip
changeset 319 17156855fe69
parent 3 e1eecf4d390d
permissions -rwxr-xr-x
Release Note: build win32 tools on Linux

#!/bin/bash

# script to generate exports for this component

# copy ../* to /tools/sbs

find .. -maxdepth 1 -type f -not -name "distribution.policy*" -print | sed 's!\.\.\(.*\)!\.\.\1 /tools/sbs\1!' > exports.inf

for i in bin lib python schema util; do
    find ../$i -type f -not -name "distribution.policy*" -not -name "*.pyc" -print | sed 's!\.\.\(.*\)!\.\.\1 /tools/sbs\1!' >> exports.inf
done