Lines Matching refs:destination

794 		my $destination = $onefile->{'destination'};
800 $destination =~ s/\$\$/\$/;
803 push @lines, "$destination\n";
805 …copy ("$sourcepath", "$destdir$destination") || die "Can't copy file: $sourcepath -> $destdir$dest…
807 utime ($sourcestat->atime, $sourcestat->mtime, "$destdir$destination");
808 chmod (oct($unixrights), "$destdir$destination") || die "Can't change permissions: $!";
809 push @lines, "$destination\n";
815 my $destination = $onelink->{'destination'};
819 symlink ("$destinationfile", "$destdir$destination") || die "Can't create symlink: $!";
820 push @lines, "$destination\n";
827 my $destination = $onelink->{'destination'};
830 `ln -sf '$target' '$destdir$destination'`;
831 push @lines, "$destination\n";
865 my $destination = $inffile->{'destination'};
866 installer::pathanalyzer::get_path_from_fullqualifiedname(\$destination);
867 $destination = $destination . $onefile->{'Name'};
868 $shellnewfileref->{'destination'} = $destination;
1164 my $destination = $languageinifileref->{'destination'};
1165 installer::pathanalyzer::get_path_from_fullqualifiedname(\$destination);
1166 $destination = $destination . $language_inf_file_name;
1167 $languageinifileref->{'destination'} = $destination;
2999 $destination = $onefile->{'destination'};
3000 installer::pathanalyzer::get_path_from_fullqualifiedname(\$destination);
3001 if ( $destination eq "" ) { $onefile->{'destination'} = $newfilename; }
3002 … else { $onefile->{'destination'} = $destination . $installer::globals::separator . $newfilename; }