Skip to content

Commit

Permalink
Bug 1316879 - Don't use CPP/CXXCPP from environment after bug 1299919…
Browse files Browse the repository at this point in the history
…. r=glandium

MozReview-Commit-ID: 4Of9nsVWK3q

--HG--
extra : rebase_source : 27724098df74dcff33ff5a8113200355ae287ae6
  • Loading branch information
jbeich committed Feb 23, 2017
1 parent 214ce08 commit b3512d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/buildconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
substs = dict(substs)

for var in os.environ:
if var != 'SHELL' and var in substs:
if var not in ('CPP', 'CXXCPP', 'SHELL') and var in substs:
substs[var] = os.environ[var]

0 comments on commit b3512d7

Please sign in to comment.