build: Prepend project common path

This avoids conflicts with standard packages such as PIL (Python Imaging
Library).
This commit is contained in:
Sebastian Huber
2019-02-08 09:41:45 +01:00
parent 0e46b342d0
commit 6f110ccf6b
32 changed files with 32 additions and 32 deletions

View File

@@ -1,6 +1,6 @@
from sys import path
from os.path import abspath
path.append(abspath('../common/'))
path.insert(0, abspath('../common/'))
from waf import cmd_configure as configure
from waf import cmd_build as build