summaryrefslogtreecommitdiff
path: root/setup_native/scripts
diff options
context:
space:
mode:
authorIngo Schmidt <is@openoffice.org>2010-02-23 16:00:32 +0100
committerIngo Schmidt <is@openoffice.org>2010-02-23 16:00:32 +0100
commit19c60d1cd501b0de978bceae4cab37689cf58017 (patch)
tree5c50950cc6718b345fd446c634f422fc797a4b69 /setup_native/scripts
parentdd90371898128eae485317f21b4db03ad37a418d (diff)
native0: #161646# new parameter for unopkg
Diffstat (limited to 'setup_native/scripts')
-rw-r--r--setup_native/scripts/admin.pl2
-rw-r--r--setup_native/scripts/register_extensions2
2 files changed, 2 insertions, 2 deletions
diff --git a/setup_native/scripts/admin.pl b/setup_native/scripts/admin.pl
index d2a3aa432426..77a7f18fbc7d 100644
--- a/setup_native/scripts/admin.pl
+++ b/setup_native/scripts/admin.pl
@@ -1071,7 +1071,7 @@ sub register_one_extension
$executable = "./" . $executable;
}
- my $systemcall = $executable . " add --shared --verbose " . "\"" . $localextension . "\"" . " -env:UserInstallation=file://" . $temppath . " 2\>\&1 |";
+ my $systemcall = $executable . " add --shared --verbose --suppress-license " . "\"" . $localextension . "\"" . " -env:UserInstallation=file://" . $temppath . " 2\>\&1 |";
print "... $systemcall\n";
diff --git a/setup_native/scripts/register_extensions b/setup_native/scripts/register_extensions
index c7fa2815b441..034642175c29 100644
--- a/setup_native/scripts/register_extensions
+++ b/setup_native/scripts/register_extensions
@@ -68,7 +68,7 @@ done
echo
for i in $FILELIST; do
- COMMAND="$UNOPKG add --shared $i"
+ COMMAND="$UNOPKG add --shared --suppress-license $i"
echo $COMMAND
$COMMAND
done