summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorArnon Yaari <wiggin15@yahoo.com>2020-04-01 15:19:09 (GMT)
committerGitHub <noreply@github.com>2020-04-01 15:19:09 (GMT)
commit5dd836030e0e399b21ab0865ae0d93934bdb3930 (patch)
tree91b5e7ff3d298832b6d97b32bad6fa9076137a50 /Misc
parenteacc07439591c97f69ab4a3d17391b009cd78ae2 (diff)
downloadcpython-5dd836030e0e399b21ab0865ae0d93934bdb3930.zip
cpython-5dd836030e0e399b21ab0865ae0d93934bdb3930.tar.gz
cpython-5dd836030e0e399b21ab0865ae0d93934bdb3930.tar.bz2
bpo-38527: fix configure script for Solaris (GH-16845)
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
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Build/2020-03-28-10-43-09.bpo-38527.fqCRgD.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2020-03-28-10-43-09.bpo-38527.fqCRgD.rst b/Misc/NEWS.d/next/Build/2020-03-28-10-43-09.bpo-38527.fqCRgD.rst
new file mode 100644
index 0000000..8696930
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2020-03-28-10-43-09.bpo-38527.fqCRgD.rst
@@ -0,0 +1,2 @@
+Fix configure check on Solaris for "float word ordering": sometimes, the correct "grep" command was not being used.
+Patch by Arnon Yaari.