buildtools: Fix PYTHONPATH and print it
authorAndreas Schneider <asn@samba.org>
Thu, 21 Mar 2024 09:31:36 +0000 (10:31 +0100)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 9 Apr 2024 22:52:37 +0000 (22:52 +0000)
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
buildtools/devel_env.sh

index 9f87a4a1b36c16c73e6a7f4429ab08011f34a400..430485ab868fb0b5951ee9ba52388b38fd305fc5 100644 (file)
@@ -3,5 +3,7 @@
 # source buildtools/devel_env.sh
 
 # Setup python path for lsp server
-PYTHONPATH="$(pwd)/third_party/waf:$(pwd)/python:$(pwd)/bin/python:$(pwd)/selftest:${PYTHONPATH}"
+echo "Old PYTHONPATH: ${PYTHONPATH}"
+PYTHONPATH="$(pwd)/third_party/waf:$(pwd)/bin/python:$(pwd)/python:$(pwd)/selftest:${PYTHONPATH}"
 export PYTHONPATH
+echo "New PYTHONPATH: ${PYTHONPATH}"