1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00
samba-mirror/buildtools/devel_env.sh
Andreas Schneider 01940ae7af buildtools: Fix PYTHONPATH and print it
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2024-04-09 22:52:37 +00:00

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}"