From e0085dee2e3ffd84336d6e22a580de5cf8a1bf03 Mon Sep 17 00:00:00 2001 From: bonazzi Date: Wed, 17 Jan 2018 18:30:09 +0000 Subject: [PATCH] Patch level : 12.0 500 Files correlati : ba1.exe I programmi in preprocess e postprocess vengono ora eseguiti per ogni patch git-svn-id: svn://10.65.10.50/branches/R_10_00@24273 c028cbd2-c16b-5b4b-a496-9718f37d4682 --- src/ba/ba1700.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ba/ba1700.cpp b/src/ba/ba1700.cpp index c008e9dd4..90005671b 100755 --- a/src/ba/ba1700.cpp +++ b/src/ba/ba1700.cpp @@ -1100,7 +1100,7 @@ bool TInstaller_mask::install(const TString& module, int patchlevel) return error_box(FR("Impossibile determinare il numero dei dischetti in %s"), remote_ininame.name()); else { - if (patchlevel == 0) +// if (patchlevel == 0) sempre ora ok = pre_process(*remote_ini, module); if (!ok) { @@ -1279,7 +1279,7 @@ bool TInstaller_mask::install(const TString& module, int patchlevel) const int files = ini.build_complete_list(module, list); if (files > 0) { - if (patchlevel == 0) +// if (patchlevel == 0) sempre ora ok = pre_process(ini, module); if (ok) @@ -1337,13 +1337,13 @@ bool TInstaller_mask::install(const TString& module, int patchlevel) } - if (ok && patchlevel == 0) // Se installo un modulo pricipale ... + if (ok) { - // ... installo DOPO tutte le patches successive - install_patches(module, lastrelease, lastpatch); TInstall_ini ini; ok &= post_process(ini, module); - } + if (patchlevel == 0) // Se installo un modulo pricipale ... + ok &= install_patches(module, lastrelease, lastpatch); // ... installo DOPO tutte le patches successive + } return ok; }