mirror of
https://github.com/Z3Prover/z3
synced 2025-06-19 20:33:38 +00:00
minor fix for ramdisk build
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
c1587dc37d
commit
6580a83594
1 changed files with 2 additions and 1 deletions
|
@ -1093,7 +1093,8 @@ def cp_z3pyc_to_build():
|
||||||
os.remove('%s/%s' % (BUILD_DIR, pyc))
|
os.remove('%s/%s' % (BUILD_DIR, pyc))
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
os.rename('%s/%s' % (Z3PY_SRC_DIR, pyc), '%s/%s' % (BUILD_DIR, pyc))
|
shutil.copyfile('%s/%s' % (Z3PY_SRC_DIR, pyc), '%s/%s' % (BUILD_DIR, pyc))
|
||||||
|
os.remove('%s/%s' % (Z3PY_SRC_DIR, pyc))
|
||||||
if is_verbose():
|
if is_verbose():
|
||||||
print "Generated '%s'" % pyc
|
print "Generated '%s'" % pyc
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue