mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 07:07:52 +01:00
(Also, regenerate trunnel stuff with trunnel 1.2. This just adds a few comments to our output.)
11 lines
272 B
Bash
Executable file
11 lines
272 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if test "x$TRUNNEL_PATH" != "x"; then
|
|
PYTHONPATH="${TRUNNEL_PATH}:${PYTHONPATH}"
|
|
export PYTHONPATH
|
|
fi
|
|
|
|
python -m trunnel --require-version=1.2 ./src/trunnel/*.trunnel
|
|
|
|
python -m trunnel --require-version=1.2 --write-c-files --target-dir=./src/ext/trunnel/
|
|
|