summaryrefslogtreecommitdiff
path: root/setup_native/scripts
diff options
context:
space:
mode:
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 6fedae20ca5d..89588d0c4d03 100644
--- a/setup_native/scripts/admin.pl
+++ b/setup_native/scripts/admin.pl
@@ -1060,7 +1060,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