diff options
author | David Tardon <dtardon@redhat.com> | 2013-04-07 09:45:19 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-04-11 03:39:36 +0000 |
commit | 9d54f0e1dec4d84f914f17c8c2445dfc53190d8a (patch) | |
tree | 2e96630a6fbc976e5c6156b5df9da3b9492a6a84 /solenv/bin/modules | |
parent | bec67a2e7f532c29fe452c0fcc5817ea66fcaebd (diff) |
add gbuild class PackageSet
This is intended for bundling filelists of multiple Packages together,
to simplify the scp2 configuration.
Change-Id: I6f700f691b37375a09a5400166aac80a8bb2a2b4
Reviewed-on: https://gerrit.libreoffice.org/3230
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'solenv/bin/modules')
-rw-r--r-- | solenv/bin/modules/installer/environment.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/environment.pm b/solenv/bin/modules/installer/environment.pm index cfc8fdf084c4..613c86bfd47b 100644 --- a/solenv/bin/modules/installer/environment.pm +++ b/solenv/bin/modules/installer/environment.pm @@ -67,7 +67,7 @@ sub create_pathvariables my $platformname = $environment->{'OUTPATH'}; $variables{'platformname'} = $platformname; - my $filelistpath = $environment->{'WORKDIR'} . $installer::globals::separator . 'Package'; + my $filelistpath = $environment->{'WORKDIR'}; $variables{'filelistpath'} = $filelistpath; return \%variables; |