From 2ee4409962405dbef86874398ad4197332b5cd73 Mon Sep 17 00:00:00 2001 From: "Christoph M. Wintersteiger" Date: Thu, 4 Dec 2014 13:51:17 +0000 Subject: [PATCH] ML API: build fixes Signed-off-by: Christoph M. Wintersteiger --- scripts/mk_util.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/mk_util.py b/scripts/mk_util.py index 5e412c892..bd60feaa8 100644 --- a/scripts/mk_util.py +++ b/scripts/mk_util.py @@ -1440,8 +1440,9 @@ class MLComponent(Component): out.write('\tcd %s ; ocamlmklib -verbose -o z3' % (sub_dir)) for m in modules: out.write(' ' + m) - out.write('z3native_stubs$(OBJ_EXT) ; cd -' ) - out.write('ml: %s\n' % (os.path.join(sub_dir, 'z3.cmxa'))) # , os.path.join(sub_dir, 'z3.cmxs'), os.path.join(sub_dir, 'z3.cma'))) + out.write(' z3native_stubs$(OBJ_EXT) ; cd -\n') + out.write('ml: %s\n' % (os.path.join(sub_dir, 'z3.cmxa'))) + # , os.path.join(sub_dir, 'z3.cmxs'), os.path.join(sub_dir, 'z3.cma'))) #out.write('\n') # Generate META file and package installation commands self.mk_ml_meta(os.path.join('src/api/ml/META'), os.path.join(BUILD_DIR, sub_dir, 'META'), VER_MAJOR, VER_MINOR, VER_BUILD, VER_REVISION)