bpo-38527: fix configure script for Solaris#16845
Conversation
|
Tested on |
|
Hi, I just hit this on Solaris 11.3. the fix looks ok to me. @wiggin15 I think you only need to add the news item |
|
This is a really short change but that is needed in every time I had to compile CPython on solaris so it would be super cool to get this merged. |
|
@wiggin15: Status check is done, and it's a success ✅ . |
|
Thanks @wiggin15 for the PR 🌮🎉.. I'm working now to backport this PR to: 3.7, 3.8. |
On Solaris, the regular "grep" command may be an old version that fails to search a binary file. We need to use the correct command (ggrep, in our case), which is found by the configure script earlier. Automerge-Triggered-By: @pablogsal (cherry picked from commit 5dd8360) Co-authored-by: Arnon Yaari <wiggin15@yahoo.com>
|
GH-19279 is a backport of this pull request to the 3.8 branch. |
|
Sorry, @wiggin15, I could not cleanly backport this to |
|
Thanks @wiggin15 for the PR 🌮🎉.. I'm working now to backport this PR to: 3.7. |
|
Sorry @wiggin15, I had trouble checking out the |
|
@wiggin15 @isidentical Could you do the backport to 3.7 using |
On Solaris, the regular "grep" command may be an old version that fails to search a binary file. We need to use the correct command (ggrep, in our case), which is found by the configure script earlier. Automerge-Triggered-By: @pablogsal (cherry picked from commit 5dd8360) Co-authored-by: Arnon Yaari <wiggin15@yahoo.com>
|
@pablogsal Thanks for merging this! The file was added in 3.8. No need to backport. |
|
Great, thanks for the PR! |
|
Oops, I spent time tracking down the same issue, and commented on the commit itself, before checking here for updated comments. I specifically needed to build 3.9 though, so I haven't actually checked the main branch yet if it's still an issue there. |
On Solaris, the regular "grep" command may be an old version that fails to search a binary file. We need to use the correct command (ggrep, in our case), which is found by the configure script earlier.
https://bugs.python.org/issue38527
Automerge-Triggered-By: @pablogsal