Lines Matching refs:installer

24 package installer::windows::patch;
26 use installer::exiter;
27 use installer::files;
28 use installer::globals;
29 use installer::windows::idtglobal;
44 my $reglocatfilename = $basedir . $installer::globals::separator . "RegLocat.idt";
45 my $appsearchfilename = $basedir . $installer::globals::separator . "AppSearc.idt";
46 my $signaturefilename = $basedir . $installer::globals::separator . "Signatur.idt";
50 $reglocatfile = installer::files::read_file($reglocatfilename);
56 installer::windows::idtglobal::write_idt_header($reglocatfile, "reglocat");
61 $appsearchfile = installer::files::read_file($appsearchfilename);
67 installer::windows::idtglobal::write_idt_header($appsearchfile, "appsearch");
72 $signaturefile = installer::files::read_file($signaturefilename);
78 installer::windows::idtglobal::write_idt_header($signaturefile, "signatur");
83 …if ( ! $allvariables->{'PATCHCODEFILE'} ) { installer::exiter::exit_program("ERROR: Variable PATCH…
84 …my $patchcodesfilename = $installer::globals::idttemplatepath . $installer::globals::separator . …
85 my $patchcodefile = installer::files::read_file($patchcodesfilename);
99 foreach my $name ( sort keys %installer::globals::installlocations )
137 installer::files::save_file($reglocatfilename ,$reglocatfile);
138 $installer::logger::Lang->printf("Updated idt file: %s\n", $reglocatfilename);
140 installer::files::save_file($appsearchfilename ,$appsearchfile);
141 $installer::logger::Lang->printf("Updated idt file: %s\n", $appsearchfilename);
143 installer::files::save_file($signaturefilename ,$signaturefile);
144 $installer::logger::Lang->printf("Updated idt file: %s\n", $signaturefilename);