mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 00:55:31 +00:00
parent
4ba744987d
commit
a16f524eae
1 changed files with 9 additions and 4 deletions
|
@ -3650,10 +3650,15 @@ class MakeRuleCmd(object):
|
|||
assert not ' ' in dir
|
||||
install_root = cls._install_root(dir, in_prefix, out)
|
||||
|
||||
cls.write_cmd(out, "mkdir -p {install_root}{dir}".format(
|
||||
install_root=install_root,
|
||||
dir=dir))
|
||||
|
||||
if is_windows():
|
||||
cls.write_cmd(out, "IF NOT EXIST {dir} (mkdir {dir})".format(
|
||||
install_root=install_root,
|
||||
dir=dir))
|
||||
else:
|
||||
cls.write_cmd(out, "mkdir -p {install_root}{dir}".format(
|
||||
install_root=install_root,
|
||||
dir=dir))
|
||||
|
||||
@classmethod
|
||||
def _is_path_prefix_of(cls, temp_path, target_as_abs):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue