mirror of
https://github.com/Relintai/godot-mono-builds.git
synced 2025-01-29 15:49:19 +01:00
bcl: Run autogen if needed
This commit is contained in:
parent
6842f35540
commit
bd129da22b
4
bcl.py
4
bcl.py
@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
import os
|
import os
|
||||||
import os.path
|
import os.path
|
||||||
|
import runtime
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from os.path import join as path_join
|
from os.path import join as path_join
|
||||||
@ -29,6 +30,9 @@ def configure_bcl(opts: BclOpts):
|
|||||||
if os.path.isfile(stamp_file):
|
if os.path.isfile(stamp_file):
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if not os.path.isfile(path_join(opts.mono_source_root, 'configure')):
|
||||||
|
runtime.run_autogen(opts)
|
||||||
|
|
||||||
build_dir = path_join(opts.configure_dir, 'bcl')
|
build_dir = path_join(opts.configure_dir, 'bcl')
|
||||||
mkdir_p(build_dir)
|
mkdir_p(build_dir)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user