Skip to content
Snippets Groups Projects
Verified Commit ab571457 authored by Moritz Angermann's avatar Moritz Angermann
Browse files

[ci/build] Copy config.sub around

parent 2e779d78
Branches wip/angerman/fix-windows
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@ import argparse
from textwrap import dedent
import subprocess
import re
import shutil
cwd = os.getcwd()
......@@ -172,6 +173,8 @@ def autoreconf():
for dir_ in ['.'] + glob.glob('libraries/*/'):
if os.path.isfile(os.path.join(dir_, 'configure.ac')):
print("Booting %s" % dir_)
if dir_ != '.':
shutil.copyfile('config.sub', os.path.join(dir_, 'config.sub'))
processes[dir_] = subprocess.Popen(['sh', '-c', reconf_cmd], cwd=dir_)
# Wait for all child processes to finish.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment