mirror of
https://github.com/Z3Prover/z3
synced 2025-06-08 23:23:23 +00:00
parent
4ba744987d
commit
a16f524eae
1 changed files with 9 additions and 4 deletions
|
@ -3650,6 +3650,11 @@ class MakeRuleCmd(object):
|
||||||
assert not ' ' in dir
|
assert not ' ' in dir
|
||||||
install_root = cls._install_root(dir, in_prefix, out)
|
install_root = cls._install_root(dir, in_prefix, out)
|
||||||
|
|
||||||
|
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(
|
cls.write_cmd(out, "mkdir -p {install_root}{dir}".format(
|
||||||
install_root=install_root,
|
install_root=install_root,
|
||||||
dir=dir))
|
dir=dir))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue