summaryrefslogtreecommitdiff
path: root/solenv/bin/modules/installer
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-11-06 16:51:05 +0100
committerMichael Stahl <mstahl@redhat.com>2013-11-07 01:34:45 +0100
commit518f404db780939e3f1d96300ebeeb1faaad6838 (patch)
treea07dd614b04e50bc0b39a1419a3e751d42fe11b5 /solenv/bin/modules/installer
parent19b2933c6df6d429f47334f0882a3aaa17c61a39 (diff)
installer: remove some special-casing of obsolete "common.pro" dirs
Change-Id: I8e79bb278759c3d6c5c782c6f2e0df8758e801c8
Diffstat (limited to 'solenv/bin/modules/installer')
-rw-r--r--solenv/bin/modules/installer/archivefiles.pm6
-rw-r--r--solenv/bin/modules/installer/systemactions.pm5
2 files changed, 0 insertions, 11 deletions
diff --git a/solenv/bin/modules/installer/archivefiles.pm b/solenv/bin/modules/installer/archivefiles.pm
index ae138d93d084..e3094187442f 100644
--- a/solenv/bin/modules/installer/archivefiles.pm
+++ b/solenv/bin/modules/installer/archivefiles.pm
@@ -162,14 +162,8 @@ sub resolving_archive_flag
if ( $styles =~ /\bARCHIVE\b/ ) # copying, unzipping and changing the file list
{
- my $iscommonfile = 0;
my $sourcepath = $onefile->{'sourcepath'};
- if ( $sourcepath =~ /\Q$installer::globals::separator\E\bcommon\Q$installer::globals::separator\E/ ) # /common/ or /common.pro/
- {
- $iscommonfile = 1;
- }
-
my $use_internal_rights = 0;
if ( $styles =~ /\bUSE_INTERNAL_RIGHTS\b/ ) { $use_internal_rights = 1; } # using the rights used inside the zip file
diff --git a/solenv/bin/modules/installer/systemactions.pm b/solenv/bin/modules/installer/systemactions.pm
index 2037c10af1f2..0c17b48436e7 100644
--- a/solenv/bin/modules/installer/systemactions.pm
+++ b/solenv/bin/modules/installer/systemactions.pm
@@ -202,11 +202,6 @@ sub create_directories
if ($newdirectory eq "unzip" ) # special handling for common directory
{
- $path = $path . ".." . $installer::globals::separator . "common" . $installer::globals::separator;
- create_directory($path);
-
- $path = $path . $newdirectory . $installer::globals::separator;
- create_directory($path);
}
else
{