From 14642f64f80df4a9c7cf929ffac4ba1a55b1e7f8 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Thu, 7 Feb 2019 21:41:13 +1100 Subject: [PATCH] Don't use system's site-packages. Signed-off-by: Tim 'mithro' Ansell --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ad8ffd87..875132ab 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ ALL_EXCLUDE = third_party .git env build # Tools + Environment IN_ENV = if [ -e env/bin/activate ]; then . env/bin/activate; fi; env: - virtualenv --python=python3 --system-site-packages env + virtualenv --python=python3 env # Install prjxray ln -sf $(PWD)/prjxray env/lib/python3.*/site-packages/ $(IN_ENV) python -c "import prjxray"