From: Enrico Tassi Date: Thu, 30 Aug 2007 13:11:24 +0000 (+0000) Subject: add a fallback in case the binaries are in the path and not in the runtime base dir X-Git-Tag: 0.4.95@7852~245 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=7a512a35d9ed58df94b25328ab1919b926ef0e34;p=helm.git add a fallback in case the binaries are in the path and not in the runtime base dir --- diff --git a/matita/matitamakeLib.ml b/matita/matitamakeLib.ml index ee04e7878..c2fff07a4 100644 --- a/matita/matitamakeLib.ml +++ b/matita/matitamakeLib.ml @@ -146,9 +146,14 @@ let rebuild_makefile development = HExtlib.input_file BuildTimeConf.matitamake_makefile_template in let ext = Lazy.force am_i_opt in - let cc = BuildTimeConf.runtime_base_dir ^ "/matitac" ^ ext in - let rm = BuildTimeConf.runtime_base_dir ^ "/matitaclean" ^ ext in - let mm = BuildTimeConf.runtime_base_dir ^ "/matitadep" ^ ext in + let binpath = + if HExtlib.is_executable + (BuildTimeConf.runtime_base_dir ^ "/matitac" ^ ext) + then BuildTimeConf.runtime_base_dir ^ "/" else "" + in + let cc = binpath ^ "matitac" ^ ext in + let rm = binpath ^ "matitaclean" ^ ext in + let mm = binpath ^ "matitadep" ^ ext in let df = pool () ^ development.name ^ "/depend" in let template = Pcre.replace ~pat:"@ROOT@" ~templ:development.root template in let template = Pcre.replace ~pat:"@CC@" ~templ:cc template in