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). --- book/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'book/wscript') diff --git a/book/wscript b/book/wscript index 0503604..d1eba3f 100644 --- a/book/wscript +++ b/book/wscript @@ -1,6 +1,6 @@ from sys import path from os.path import abspath, exists -path.append(abspath('../common/')) +path.insert(0, abspath('../common/')) from waf import cmd_configure_path, cmd_build_path, cmd_options_path, spell, cmd_spell -- cgit v1.2.3