2014-09-25 12:31:31 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if test "x$TRUNNEL_PATH" != "x"; then
|
|
|
|
PYTHONPATH="${TRUNNEL_PATH}:${PYTHONPATH}"
|
|
|
|
export PYTHONPATH
|
|
|
|
fi
|
|
|
|
|
2016-12-08 16:56:24 -05:00
|
|
|
OPTIONS="--require-version=1.5.1"
|
|
|
|
|
2016-09-01 10:07:41 -04:00
|
|
|
# Get all .trunnel files recursively from that directory so we can support
|
|
|
|
# multiple sub-directories.
|
|
|
|
for file in `find ./src/trunnel/ -name '*.trunnel'`; do
|
2016-12-08 16:56:24 -05:00
|
|
|
python -m trunnel ${OPTIONS} $file
|
2016-09-01 10:07:41 -04:00
|
|
|
done
|
2014-09-25 12:31:31 -04:00
|
|
|
|
2016-12-08 16:56:24 -05:00
|
|
|
python -m trunnel ${OPTIONS} --write-c-files --target-dir=./src/ext/trunnel/
|
2014-09-25 13:16:35 -04:00
|
|
|
|