Skip to content
This repository has been archived by the owner on Aug 4, 2022. It is now read-only.

Commit

Permalink
Bug 1256574 - Make the part writing and executing config.status impor…
Browse files Browse the repository at this point in the history
…table for c-c. r=gps
  • Loading branch information
glandium committed Mar 15, 2016
1 parent 3936d1d commit 9e3397a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ def main(argv):
if sandbox._help:
return 0

return config_status(config)


def config_status(config):
# Sanitize config data to feed config.status
sanitized_config = {}
sanitized_config['substs'] = {
Expand Down Expand Up @@ -69,5 +73,6 @@ def main(argv):
return subprocess.call([config['PYTHON'], 'config.status'])
return 0


if __name__ == '__main__':
sys.exit(main(sys.argv))

0 comments on commit 9e3397a

Please sign in to comment.