mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-04-01 12:01:31 +00:00
buildman: Put our local libraries first in the path
If patman is installed on the machine (e.g. in the standard dist-packages directory), it will find libraries from there in preference to our local libraries. Adjust the order of the path to ensure that local libraries are found first. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
745b395aef
commit
a556eeebaa
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ import unittest
|
||||||
|
|
||||||
# Bring in the patman libraries
|
# Bring in the patman libraries
|
||||||
our_path = os.path.dirname(os.path.realpath(__file__))
|
our_path = os.path.dirname(os.path.realpath(__file__))
|
||||||
sys.path.append(os.path.join(our_path, '../patman'))
|
sys.path.insert(1, os.path.join(our_path, '../patman'))
|
||||||
|
|
||||||
# Our modules
|
# Our modules
|
||||||
import board
|
import board
|
||||||
|
|
Loading…
Add table
Reference in a new issue