2018-04-26 10:09:51 +03:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2019-07-08 20:30:34 +03:00
|
|
|
from __future__ import absolute_import
|
2018-04-26 10:09:51 +03:00
|
|
|
import buildconfig
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
2018-05-22 01:01:01 +03:00
|
|
|
|
2018-04-26 10:09:51 +03:00
|
|
|
def main(output, lib_file, *scripts):
|
|
|
|
for script in scripts:
|
2018-05-22 01:01:01 +03:00
|
|
|
retcode = subprocess.call(
|
|
|
|
[sys.executable, script], cwd=buildconfig.topsrcdir)
|
2018-04-26 10:09:51 +03:00
|
|
|
if retcode != 0:
|
|
|
|
raise Exception(script + " failed")
|