mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Fix "Unbound module Z" error when invoking ocamldoc.
This commit is contained in:
parent
e818b8d06f
commit
8db0429809
|
@ -317,7 +317,7 @@ try:
|
||||||
if ML_ENABLED:
|
if ML_ENABLED:
|
||||||
ml_output_dir = os.path.join(OUTPUT_DIRECTORY, 'html', 'ml')
|
ml_output_dir = os.path.join(OUTPUT_DIRECTORY, 'html', 'ml')
|
||||||
mk_dir(ml_output_dir)
|
mk_dir(ml_output_dir)
|
||||||
if subprocess.call(['ocamldoc', '-html', '-d', ml_output_dir, '-sort', '-hide', 'Z3', '-I', '%s/api/ml' % BUILD_DIR, '%s/api/ml/z3enums.mli' % BUILD_DIR, '%s/api/ml/z3.mli' % BUILD_DIR]) != 0:
|
if subprocess.call(['ocamldoc', '-html', '-d', ml_output_dir, '-sort', '-hide', 'Z3', '-I', '+zarith', '-I', '%s/api/ml' % BUILD_DIR, '%s/api/ml/z3enums.mli' % BUILD_DIR, '%s/api/ml/z3.mli' % BUILD_DIR]) != 0:
|
||||||
print("ERROR: ocamldoc failed.")
|
print("ERROR: ocamldoc failed.")
|
||||||
exit(1)
|
exit(1)
|
||||||
print("Generated ML/OCaml documentation.")
|
print("Generated ML/OCaml documentation.")
|
||||||
|
|
Loading…
Reference in a new issue