diff options
author | sb <sb@openoffice.org> | 2010-04-06 16:53:43 +0200 |
---|---|---|
committer | sb <sb@openoffice.org> | 2010-04-06 16:53:43 +0200 |
commit | 0d66d00dc0377f27fb06d3eebcb0240bd36aec15 (patch) | |
tree | b7b5f7a36099e4c0eaa558a6e11a934338f0055d /solenv/bin/macosx-change-install-names.pl | |
parent | ff3ac45a0684089547562cc0971e4f53b360c16e (diff) |
sb122: #i110548# extension native libraries linking against basis layer; new extension dependency deployment-repositories
Diffstat (limited to 'solenv/bin/macosx-change-install-names.pl')
-rw-r--r-- | solenv/bin/macosx-change-install-names.pl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/solenv/bin/macosx-change-install-names.pl b/solenv/bin/macosx-change-install-names.pl index b7530e4f5e98..4f237414675b 100644 --- a/solenv/bin/macosx-change-install-names.pl +++ b/solenv/bin/macosx-change-install-names.pl @@ -42,7 +42,9 @@ sub action($$$) 'shl/URELIB/URELIB' => '@loader_path', 'shl/OOO/URELIB' => '@loader_path/../ure-link/lib', 'shl/OOO/OOO' => '@loader_path', - 'shl/OXT/URELIB' => '@executable_path/urelibs'); + 'shl/OXT/URELIB' => '@executable_path/urelibs', + 'shl/BOXT/URELIB' => '@executable_path/urelibs', + 'shl/BOXT/OOO' => '@loader_path/../../../../../../basis-link/program'); my ($type, $loc1, $loc2) = @_; my $act = $action{"$type/$loc1/$loc2"}; die "illegal combination $type/$loc/$2" unless defined $act; @@ -50,7 +52,7 @@ sub action($$$) } @ARGV == 3 || @ARGV >= 2 && $ARGV[0] eq "extshl" or die - 'Usage: app|shl|extshl UREBIN|URELIB|OOO|SDK|BRAND|OXT|NONE <filepath>*'; + 'Usage: app|shl|extshl UREBIN|URELIB|OOO|SDK|BRAND|OXT|BOXT|NONE <filepath>*'; $type = shift @ARGV; $loc = shift @ARGV; if ($type eq "extshl") |