Skip to content

Commit

Permalink
Merge pull request #94 from fastalgorithms/patch-startup-intel-mac
Browse files Browse the repository at this point in the history
small bug in startup
  • Loading branch information
askhamwhat authored Sep 19, 2024
2 parents a32d935 + 2ea3c45 commit a395c7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion startup.m
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function startup(opts)
setenv('PATH', path1);
if ismac
[~, result] = system('uname -m');
if strcmpi(result, 'x86_64')
if strcmpi(strtrim(result), 'x86_64')
!cp -f make.inc.macos.gnu make.inc;
else
!cp -f make.inc.macos_arm64.gnu make.inc;
Expand Down

0 comments on commit a395c7b

Please sign in to comment.