diff --git a/plugins/loc_cele/loc_cele.irp.f b/plugins/loc_cele/loc_cele.irp.f index 7cb1797d..30624c1d 100644 --- a/plugins/loc_cele/loc_cele.irp.f +++ b/plugins/loc_cele/loc_cele.irp.f @@ -6,7 +6,7 @@ ! This program performs a localization of the active orbitals ! of a CASSCF wavefunction, reading the orbitals from a RASORB ! file of molcas. - ! id1=max number of MO in a given symmetry. + ! id1=max is the number of MO in a given symmetry. END_DOC integer id1 diff --git a/scripts/compilation/qp_create_ninja.py b/scripts/compilation/qp_create_ninja.py index ad421858..67652890 100755 --- a/scripts/compilation/qp_create_ninja.py +++ b/scripts/compilation/qp_create_ninja.py @@ -520,11 +520,14 @@ def ninja_readme_build(path_module, d_irp, dict_root_path): root_module = dict_root_path[module] tags = join(root_module.abs, "tags") + str_depend = " ".join(d_irp[path_module]["l_depend"]) + tree = join(root_module.abs, "tree_dependency.png") - l_string = ["build {0}: build_readme {1} {2}".format(path_readme, - tags, - tree), + l_string = ["build {0}: build_readme {1} {2} {3}".format(path_readme, + tags, + str_depend, + tree), " module_root = {0}".format(root_module.abs), " module_abs = {0}".format(path_module.abs), " module_rel = {0}".format(path_module.rel), ""]