summaryrefslogtreecommitdiffstats
path: root/bsp-howto
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--bsp-howto/conf.py2
-rw-r--r--bsp-howto/wscript2
2 files changed, 2 insertions, 2 deletions
diff --git a/bsp-howto/conf.py b/bsp-howto/conf.py
index 0b380b3..f5fb859 100644
--- a/bsp-howto/conf.py
+++ b/bsp-howto/conf.py
@@ -1,5 +1,5 @@
import sys, os
-sys.path.append(os.path.abspath('../common/'))
+sys.path.insert(0, os.path.abspath('../common/'))
from conf import *
diff --git a/bsp-howto/wscript b/bsp-howto/wscript
index 26ab0ca..1cb5736 100644
--- a/bsp-howto/wscript
+++ b/bsp-howto/wscript
@@ -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