forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1523145 - Remove mk_export_correct_style. r=froydnj
It turns out, we don't need to `mk_add_options export` the variables from the in-tree mozconfigs. If anything, that causes problems when trying to simplify the mozconfigs, because it makes the variables exported from .mozconfig.mk, overriding what configure may change and store in autoconf.mk. All the variables are handled by configure in a way that makes them available in autoconf.mk, so there's no loss there, and with the python/shell-based mozconfig loader, it turns out we don't need to go through extra normalization via cmd. autospider.py, being its own pseudo-mozconfig parser, still does need it, though, but it was hooking into it already, so just inline that. Differential Revision: https://phabricator.services.mozilla.com/D17769 --HG-- extra : moz-landing-system : lando
- Loading branch information
Showing
9 changed files
with
6 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
if test -d "$topsrcdir/clang/bin"; then | ||
CLANG_DIR=`cd "$topsrcdir/clang/bin" ; pwd` | ||
export PATH="${CLANG_DIR}:${PATH}" | ||
|
||
mk_export_correct_style PATH | ||
fi | ||
|
||
export LINKER=lld-link |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters