# HG changeset patch # User krauss # Date 1344202324 -7200 # Node ID fe611991427a8acc4b8e53a2a1677111332dda39 # Parent 968ecd2bca881d1b795bf5e55d0ade89ea7271f4 corrected session name diff -r 968ecd2bca88 -r fe611991427a Admin/mira.py --- a/Admin/mira.py Sun Aug 05 22:25:16 2012 +0200 +++ b/Admin/mira.py Sun Aug 05 23:32:04 2012 +0200 @@ -200,9 +200,9 @@ return isabelle_build(*(args + ("-b", "HOL-Library"))) @configuration(repos = [Isabelle], deps = [(HOL, [0])]) -def HOL_HOLCF(*args): +def HOLCF(*args): """HOLCF""" - return isabelle_build(*(args + ("-b", "HOL-HOLCF"))) + return isabelle_build(*(args + ("-b", "HOLCF"))) @configuration(repos = [Isabelle], deps = [(Pure, [0])]) def ZF(*args): @@ -219,7 +219,7 @@ @configuration(repos = [Isabelle], deps = []) def AFP_images(*args): """Isabelle images needed for the AFP (64 bit)""" - return isabelle_build(*(args + ("-b", "-j", "2", "Pure", "HOL", "HOL-HOLCF", "HOL-Word")), more_settings=settings64) + return isabelle_build(*(args + ("-b", "-j", "2", "Pure", "HOL", "HOLCF", "HOL-Word")), more_settings=settings64) @configuration(repos = [Isabelle], deps = []) def Isabelle_makeall(*args):