if 'MAKE' in env_without_make:
del env_without_make['MAKE']
- process = subprocess.Popen(['./autogen.sh', '--prefix=%s' % installation_prefix],
+ process = subprocess.Popen(['bash', './autogen.sh', '--prefix=%s' % installation_prefix],
cwd=jhbuild_source_path, env=env_without_make)
process.wait()
if process.returncode != 0:
sys.exit(e)
ensure_jhbuild()
-process = subprocess.Popen([jhbuild_path, '--no-interact', '-f', top_level_path('Tools', platform, 'jhbuildrc'), 'run'] + sys.argv[2:])
+process = subprocess.Popen([jhbuild_path, '--no-interact', '-f', top_level_path('Tools', platform, 'jhbuildrc')] + sys.argv[2:])
process.wait()
sys.exit(process.returncode)