diff options
author | Kalman Szalai - KAMI <kami911@gmail.com> | 2011-05-04 04:45:32 +0200 |
---|---|---|
committer | Kalman Szalai - KAMI <kami911@gmail.com> | 2011-05-04 04:45:32 +0200 |
commit | 170b2d27bd406871840f5019dfccd2b27d5ff86f (patch) | |
tree | 5787b17a4436df97a8247d72145051dc93a7f054 | |
parent | 434f7f0234647f3a0bbc55eb3fd45a792053ec49 (diff) |
Add OxygenOffice related settings
* Start download package name with OOOP in case of OxygenOffice
* Ability to create oxygenoffice product
-rw-r--r-- | solenv/bin/modules/installer/download.pm | 2 | ||||
-rw-r--r-- | solenv/inc/productversion.mk | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/download.pm b/solenv/bin/modules/installer/download.pm index 3d47e4294216..ce21395cb6a9 100644 --- a/solenv/bin/modules/installer/download.pm +++ b/solenv/bin/modules/installer/download.pm @@ -470,6 +470,8 @@ sub get_downloadname_productname if ( $allvariables->{'PRODUCTNAME'} eq "URE" ) { $start = "LibO-URE"; } + if ( $allvariables->{'PRODUCTNAME'} eq "OxygenOffice" ) { $start = "OOOP"; } + return $start; } diff --git a/solenv/inc/productversion.mk b/solenv/inc/productversion.mk index 972963b46a54..15ea3085f0e7 100644 --- a/solenv/inc/productversion.mk +++ b/solenv/inc/productversion.mk @@ -25,7 +25,7 @@ # #************************************************************************* -PRODUCTLIST = libreoffice +PRODUCTLIST = libreoffice oxygenoffice # default values to minimize maintainance effort PRODUCTVERSION = 3.4 |