git, subversion: fixes for system Perl#76964
Conversation
774d666 to
4984047
Compare
https://github.com/Homebrew/homebrew-core/pull/76964/checks?check_run_id=2546546538#step:7:82 |
|
Probably fixed with Homebrew/brew#11360. |
|
Your patch probably needs to refer to |
|
|
|
git.rb: ENV["PERL_PATH"] = which("perl")
on_macos do
ENV["PERL_PATH"] = "/usr/bin/perl"
endsubversion.rb: perl = Formula["perl"].opt_bin/"perl"
on_macos do
perl = "/usr/bin/perl"
end |
|
Yeah I've been talking to the Linux folk about Perl on Linux. There is a desire not to have Git depend on Perl (since it's an extra dependency on a critical component that The approach I took here clearly didn't work because:
|
|
I mean that on Linux git depends on perl in the PATH, and subversion depends on homebrew's perl. like this: perl = which("perl")
on_macos do
perl = "/usr/bin/perl"
end |
|
Subversion already depends on brewed Perl on Linux so |
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
brew install --build-from-source <formula>, where<formula>is the name of the formula you're submitting?brew test <formula>, where<formula>is the name of the formula you're submitting?brew audit --strict <formula>(after doingbrew install <formula>)?Revision bump for Homebrew/brew#11286 and add fixes to PERL5LIB in
git-svnwhen running on an OS without a systemsvn.