Skip to content

Commit

Permalink
Merge branch 'public/9.0' into public/9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelherger committed Dec 6, 2024
2 parents c8d4ad7 + b3f3037 commit f943e34
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Changelog9.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h2><a name="v9.0.1" id="v9.0.1"></a>Version 9.0.1</h2>

<li>Platform Support:</li>
<ul>
<li></li>
<li>Fix helper search path initialisation on older macOS using Perl 5.18.</li>
</ul>
<br />

Expand Down
5 changes: 5 additions & 0 deletions Slim/Utils/OS/OSX.pm
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@ sub initSearchPath {

my @paths = ();

# The application bundle has moved binaries due to Apple's requirements for notarization
if ($Bin =~ m|(.*app/Contents/)Resources/server|) {
push @paths, catdir($1, 'MacOS');
}

push @paths, dirname($^X);
push @paths, $ENV{'HOME'} ."/Library/iTunes/Scripts/iTunes-LAME.app/Contents/Resources/";
push @paths, (split(/:/, $ENV{'PATH'}), qw(/usr/bin /usr/local/bin /usr/libexec /sw/bin /usr/sbin /opt/local/bin));
Expand Down

0 comments on commit f943e34

Please sign in to comment.