summaryrefslogtreecommitdiff
path: root/solenv/bin/modules/installer/windows/inifile.pm
diff options
context:
space:
mode:
Diffstat (limited to 'solenv/bin/modules/installer/windows/inifile.pm')
-rw-r--r--solenv/bin/modules/installer/windows/inifile.pm19
1 files changed, 0 insertions, 19 deletions
diff --git a/solenv/bin/modules/installer/windows/inifile.pm b/solenv/bin/modules/installer/windows/inifile.pm
index d13fafc26fd6..1b4fd5c64efe 100644
--- a/solenv/bin/modules/installer/windows/inifile.pm
+++ b/solenv/bin/modules/installer/windows/inifile.pm
@@ -49,23 +49,6 @@ sub get_profile_for_profileitem
}
####################################################
-# Checking whether profile is included in patch
-####################################################
-
-sub profile_has_patch_flag
-{
- my ($profile) = @_;
-
- my $in_patch = 0;
-
- my $styles = "";
- if ( $profile->{'Styles'} ) { $styles = $profile->{'Styles'}; }
- if ( $styles =~ /\bPATCH\b/ ) { $in_patch = 1; }
-
- return $in_patch;
-}
-
-####################################################
# Checking whether profile is part of product
####################################################
@@ -117,8 +100,6 @@ sub create_inifile_table
my $profile = get_profile_for_profileitem($profileid, $filesref);
- if (( $installer::globals::patch ) && ( ! profile_has_patch_flag($profile) )) { next; }
-
my %inifile = ();
$inifile{'IniFile'} = $profileitem->{'Inifiletablekey'};