X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2FmatitamakeLib.ml;h=2bf01f8979a32ad38caeb40cb80770c0d966c186;hb=66faca1dc849662e27d760b950294ef66a5741b3;hp=eed971f4514568a466e167165ef4781ed02c865d;hpb=ae5ab4187e4dcc57a16d2375445f8353fbad7d92;p=helm.git diff --git a/helm/software/matita/matitamakeLib.ml b/helm/software/matita/matitamakeLib.ml index eed971f45..2bf01f897 100644 --- a/helm/software/matita/matitamakeLib.ml +++ b/helm/software/matita/matitamakeLib.ml @@ -215,7 +215,10 @@ let call_make ?matita_flags development target make = let system = if Helm_registry.get_bool "matita.system" then " -system" else "" in - already_defined ^ bench ^ system + let noinnertypes = + if Helm_registry.get_bool "matita.noinnertypes" then " -noinnertypes" else "" + in + already_defined ^ bench ^ system ^ noinnertypes in let csc = try ["SRC=" ^ Sys.getenv "SRC"] with Not_found -> [] in rebuild_makefile development;