Skip to content

Commit

Permalink
Bug 1285860 - Add python/mozbuild at beginning of sys.path; r=glandium
Browse files Browse the repository at this point in the history
We want local source directory paths to take precedence over system
paths so system installed packages don't get used.

MozReview-Commit-ID: FIZ0RxqZj78

--HG--
extra : rebase_source : e8d484ea0c8a0bdb1df10375317f6b2c349b9162
  • Loading branch information
indygreg committed Jul 11, 2016
1 parent 5aa1fe6 commit fedd3f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


base_dir = os.path.abspath(os.path.dirname(__file__))
sys.path.append(os.path.join(base_dir, 'python', 'mozbuild'))
sys.path.insert(0, os.path.join(base_dir, 'python', 'mozbuild'))
from mozbuild.configure import ConfigureSandbox


Expand Down

0 comments on commit fedd3f7

Please sign in to comment.