summaryrefslogtreecommitdiffstats
path: root/solenv
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-09-12 06:33:47 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-09-12 06:33:47 +0200
commit66d33a849264ac4c83ca87ea7f1500e4a2079cf8 (patch)
treed27a2726931d353b3ca58e43bcd0c4f2139d5f46 /solenv
parentinstaller: restore generate_cab_filename_for_some_cabs (diff)
downloadcore-66d33a849264ac4c83ca87ea7f1500e4a2079cf8.tar.gz
core-66d33a849264ac4c83ca87ea7f1500e4a2079cf8.zip
installer: restore these too
This was dumb - I can't use search correctly ;) Change-Id: I966ad8bce2edbd4a6c58f82568210e110c88a6c5
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/modules/installer/windows/assembly.pm28
1 files changed, 28 insertions, 0 deletions
diff --git a/solenv/bin/modules/installer/windows/assembly.pm b/solenv/bin/modules/installer/windows/assembly.pm
index fb80d52da8c3..38c04a799627 100644
--- a/solenv/bin/modules/installer/windows/assembly.pm
+++ b/solenv/bin/modules/installer/windows/assembly.pm
@@ -62,6 +62,34 @@ sub get_msiassembly_component
}
##############################################################
+# Returning the file name as manifest file
+##############################################################
+
+sub get_msiassembly_filemanifest
+{
+ my ( $onefile ) = @_;
+
+ my $filemanifest = "";
+
+ $filemanifest = $onefile->{'uniquename'};
+
+ return $filemanifest;
+}
+
+##############################################################
+# Returning the file application
+##############################################################
+
+sub get_msiassembly_fileapplication
+{
+ my ( $onefile ) = @_;
+
+ my $fileapplication = "";
+
+ return $fileapplication;
+}
+
+##############################################################
# Returning the file attributes
##############################################################