Kaydet (Commit) 79d1d1b4 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Use sandboxing when requested also for the app bundle in the dmg

Change-Id: I612be680e7aea2b098894aa4e11b10b471d34144
üst 636f9032
...@@ -424,7 +424,10 @@ sub create_package ...@@ -424,7 +424,10 @@ sub create_package
# participate in the signing and their validity can be # participate in the signing and their validity can be
# guaranteed. # guaranteed.
$systemcall = "codesign --sign $ENV{'MACOSX_CODESIGNING_IDENTITY'} --force -v -v -v $localtempdir/$folder/$volume_name_classic_app.app"; $entitlements = '';
$entitlements = "--entitlements $ENV{'BUILDDIR'}/lo.xcent" if defined($ENV{'ENABLE_MACOSX_SANDBOX'});
$systemcall = "codesign --sign $ENV{'MACOSX_CODESIGNING_IDENTITY'} --force $entitlements -v -v -v $localtempdir/$folder/$volume_name_classic_app.app";
print "... $systemcall ...\n"; print "... $systemcall ...\n";
my $returnvalue = system($systemcall); my $returnvalue = system($systemcall);
$infoline = "Systemcall: $systemcall\n"; $infoline = "Systemcall: $systemcall\n";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment