changeset 28 | b8fa7dfeeaa1 |
parent 27 | 3a31ca4b29c4 |
child 29 | 86492ef8d086 |
27:3a31ca4b29c4 | 28:b8fa7dfeeaa1 |
---|---|
1 #!/bin/bash |
|
2 |
|
3 # script to generate exports for this component |
|
4 |
|
5 # copy ../* to /tools/sbs |
|
6 |
|
7 find .. -maxdepth 1 -type f -not -name "distribution.policy*" -print | sed 's!\.\.\(.*\)!\.\.\1 /tools/sbs\1!' > exports.inf |
|
8 |
|
9 for i in bin lib python schema util; do |
|
10 find ../$i -type f -not -name "distribution.policy*" -not -name "*.pyc" -print | sed 's!\.\.\(.*\)!\.\.\1 /tools/sbs\1!' >> exports.inf |
|
11 done |
|
12 |