Give Mac master builds a nice background .dmg image, too
Added a new DevVersionCopy action to scp2, that fires if PRODUCTNAME equals "LibO-dev" - in that case, we use the DS_Store_Dev one.
This commit is contained in:
parent
06840c3b3d
commit
dab7974476
5 changed files with 18 additions and 0 deletions
|
@ -291,6 +291,7 @@ End
|
|||
|
||||
ScpAction scp_Copy_Ds_Store
|
||||
Copy = "DS_Store";
|
||||
DevVersionCopy = "DS_Store_Dev";
|
||||
LangPackCopy = "DS_Store_Langpack";
|
||||
PatchCopy = "DS_Store_Patch";
|
||||
Name = ".DS_Store";
|
||||
|
|
|
@ -31,6 +31,7 @@ mkdir: %_DEST%\bin\osolsmf
|
|||
..\source\mac\Info.plist.langpack %_DEST%\bin\Info.plist.langpack
|
||||
..\source\mac\ooo\osxdndinstall.png %_DEST%\bin\osl\osxdndinstall.png
|
||||
..\source\mac\ooo\DS_Store %_DEST%\bin\osl\DS_Store
|
||||
..\source\mac\ooo\DS_Store_Dev %_DEST%\bin\osl\DS_Store_Dev
|
||||
..\source\mac\ooo\DS_Store_Langpack %_DEST%\bin\osl\DS_Store_Langpack
|
||||
..\source\java\javaversion.dat %_DEST%\bin\javaversion.dat
|
||||
..\source\java\javaversion2.dat %_DEST%\bin\javaversion2.dat
|
||||
|
|
BIN
setup_native/source/mac/ooo/DS_Store_Dev
Normal file
BIN
setup_native/source/mac/ooo/DS_Store_Dev
Normal file
Binary file not shown.
|
@ -487,6 +487,7 @@ if (( ! $allvariableshashref->{'XPDINSTALLER'} ) || ( ! $installer::globals::isx
|
|||
|
||||
if ( $installer::globals::languagepack ) { installer::scriptitems::use_langpack_copy_scpaction($scpactionsinproductarrayref); }
|
||||
if ( $installer::globals::helppack ) { installer::scriptitems::use_langpack_copy_scpaction($scpactionsinproductarrayref); }
|
||||
if ( $allvariables->{'PRODUCTNAME'} eq "LibO-dev" ) { installer::scriptitems::use_devversion_copy_scpaction($scpactionsinproductarrayref); }
|
||||
if ( $installer::globals::patch ) { installer::scriptitems::use_patch_copy_scpaction($scpactionsinproductarrayref); }
|
||||
if ( $installer::globals::globallogging ) { installer::files::save_array_of_hashes($loggingdir . "productscpactions1b.log", $scpactionsinproductarrayref); }
|
||||
|
||||
|
|
|
@ -619,6 +619,21 @@ sub use_langpack_copy_scpaction
|
|||
}
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# Using different HostName for dev builds
|
||||
################################################################################
|
||||
|
||||
sub use_devversion_copy_scpaction
|
||||
{
|
||||
my ($scpactionsref) = @_;
|
||||
|
||||
for ( my $i = 0; $i <= $#{$scpactionsref}; $i++ )
|
||||
{
|
||||
my $onescpaction = ${$scpactionsref}[$i];
|
||||
if (( $onescpaction->{'DevVersionCopy'} ) && ( $onescpaction->{'DevVersionCopy'} ne "" )) { $onescpaction->{'Copy'} = $onescpaction->{'DevVersionCopy'}; }
|
||||
}
|
||||
}
|
||||
|
||||
################################################################################
|
||||
# Using different HostName for language packs
|
||||
################################################################################
|
||||
|
|
Loading…
Reference in a new issue