From 6f110ccf6b2a9e142859874e401888dc9c2c2b2f Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 8 Feb 2019 09:41:45 +0100 Subject: build: Prepend project common path This avoids conflicts with standard packages such as PIL (Python Imaging Library). --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index 32cca2a..f10fcb4 100644 --- a/wscript +++ b/wscript @@ -5,7 +5,7 @@ import sys import os.path -sys.path.append(os.path.abspath('common')) +sys.path.insert(0, os.path.abspath('common')) import waflib import waf as docs_waf -- cgit v1.2.3