diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-11-17 00:35:35 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-11-27 12:45:23 +0100 |
commit | 38a22a9026a3d8a67f3e16ec650960a10b527d25 (patch) | |
tree | f60bdd178a59fa4e59813e19083702f447613e8d /solenv/bin | |
parent | 6f8f95fed7a4bd741bf035f53a758ac0c6da66b2 (diff) |
Switch from python to python3
Mac specific parts of patch by:
Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Change-Id: I90ef17c6f5a678230539a80ab999fa5344e4fc8f
Diffstat (limited to 'solenv/bin')
-rw-r--r-- | solenv/bin/macosx-dylib-link-list.pl | 3 |
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}; |