-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
bpo-38527: fix configure script for Solaris #16845
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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. |
Misc/NEWS.d/next/Build/2020-03-28-10-43-09.bpo-38527.fqCRgD.rst
Outdated
Show resolved
Hide resolved
@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 <[email protected]>
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 <[email protected]>
@pablogsal Thanks for merging this! The file was added in 3.8. No need to backport. |
Great, thanks for the PR! |
…5016) (GH-25034) Signed-off-by: Christian Heimes <[email protected]>. (cherry picked from commit 5d6e8c1) Co-authored-by: Christian Heimes <[email protected]>
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