summaryrefslogtreecommitdiff
path: root/solenv/bin
diff options
context:
space:
mode:
Diffstat (limited to 'solenv/bin')
-rw-r--r--solenv/bin/macosx-dylib-link-list.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/solenv/bin/macosx-dylib-link-list.pl b/solenv/bin/macosx-dylib-link-list.pl
index a7df568adedf..97458e431523 100644
--- a/solenv/bin/macosx-dylib-link-list.pl
+++ b/solenv/bin/macosx-dylib-link-list.pl
@@ -67,7 +67,8 @@ foreach $file (@todo)
{
my $full = $1;
my $loc = locate($2);
- $loc = locate($1) if $full =~ m'^\s*@loader_path/(OOoPython.framework/Versions/[^/]+/OOoPython)';
+ # mapping for PythonFramework in RepositoryExternal.mk
+ next if $full =~ m'^\s*@loader_path/(LibreOfficePython.framework/Versions/[^/]+/LibreOfficePython)';
if (defined $loc)
{
handle($full, $loc) unless defined $done{$full};