mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
01940ae7af
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
10 lines
294 B
Bash
10 lines
294 B
Bash
# This file can be sourced using
|
|
#
|
|
# source buildtools/devel_env.sh
|
|
|
|
# Setup python path for lsp server
|
|
echo "Old PYTHONPATH: ${PYTHONPATH}"
|
|
PYTHONPATH="$(pwd)/third_party/waf:$(pwd)/bin/python:$(pwd)/python:$(pwd)/selftest:${PYTHONPATH}"
|
|
export PYTHONPATH
|
|
echo "New PYTHONPATH: ${PYTHONPATH}"
|