src/Pure/System/build.ML
changeset 48419 6d7b6e47f3ef
parent 48418 1a634f9614fb
child 48457 fd9e28d5a143
--- a/src/Pure/System/build.ML	Sat Jul 21 16:41:55 2012 +0200
+++ b/src/Pure/System/build.ML	Sat Jul 21 17:49:22 2012 +0200
@@ -14,7 +14,7 @@
 
 fun build args_file =
   let
-    val (build_images, (parent, (name, theories))) =
+    val (save, (parent, (name, theories))) =
       File.read (Path.explode args_file) |> YXML.parse_body |>
         let open XML.Decode in pair bool (pair string (pair string (list string))) end;
 
@@ -22,7 +22,7 @@
     val _ = Thy_Info.use_thys theories;
     val _ = Session.finish ();
 
-    val _ = if build_images then () else quit ();
+    val _ = if save then () else quit ();
   in () end
   handle exn => (Output.error_msg (ML_Compiler.exn_message exn); exit 1);