mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
50d15e06b3
(Also, regenerate trunnel stuff with trunnel 1.2. This just adds a few comments to our output.)
12 lines
272 B
Bash
Executable File
12 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/
|
|
|