Lines Matching refs:installer

24 package installer::substfilenamefiles;
26 use installer::exiter;
27 use installer::globals;
28 use installer::logger;
29 use installer::pathanalyzer;
30 use installer::systemactions;
40 …my $replacedirbase = installer::systemactions::create_directories("change_filename", $languagestri…
42 installer::logger::include_header_into_logfile("Files with flag SUBST_FILENAME:");
56installer::exiter::exit_program("ERROR: SUBST_FILENAME is set, but no Substitute and no InstallNam…
67 …my $replacedir = $replacedirbase . $installer::globals::separator . $onelanguage . $installer::glo…
68 installer::systemactions::create_directory($replacedir); # creating language specific directories
79 …if ( $onefilename =~ /\Q$installer::globals::separator\E/ ) # filename begins with a slash, for in…
81 $onefilename =~ s/^\s*\Q$installer::globals::separator\E//;
92 installer::pathanalyzer::get_path_from_fullqualifiedname(\$destdir);
93 installer::systemactions::create_directory_structure($destdir);
96 my $copysuccess = installer::systemactions::copy_one_file($sourcepath, $movepath);
105 installer::pathanalyzer::make_absolute_filename_to_relative_filename(\$newfilename);
110 $copysuccess = installer::systemactions::copy_one_file($movepath, $longnewfilename);
117 installer::pathanalyzer::get_path_from_fullqualifiedname(\$newdest);
133 installer::pathanalyzer::make_absolute_filename_to_relative_filename(\$newfilename);
137 $copysuccess = installer::systemactions::copy_one_file($movepath, $longnewfilename);
144 installer::pathanalyzer::get_path_from_fullqualifiedname(\$newdest);
158 $installer::logger::Lang->printf("\n");