From 38a22a9026a3d8a67f3e16ec650960a10b527d25 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Sat, 17 Nov 2012 00:35:35 +0100 Subject: Switch from python to python3 Mac specific parts of patch by: Christian Lohmaier Change-Id: I90ef17c6f5a678230539a80ab999fa5344e4fc8f --- solenv/bin/macosx-dylib-link-list.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'solenv/bin') 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}; -- cgit