This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Unportable test(1) operator in configure script
Type: compile error Stage: resolved
Components: Installation Versions: Python 3.11, Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: miss-islington, ned.deily, vstinner, wiz
Priority: normal Keywords: patch

Created on 2022-01-08 21:43 by wiz, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 30490 merged wiz, 2022-01-08 21:46
PR 30491 merged miss-islington, 2022-01-09 00:54
Messages (3)
msg410120 - (view) Author: Thomas Klausner (wiz) * Date: 2022-01-08 21:43
The configure script uses the test(1) '==' operator, which is only supported by bash. The standard comparison operator is '='.
msg410125 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2022-01-09 00:54
New changeset 3d11c1b8b49800c5c4c295953cc3abf577f6065a by Thomas Klausner in branch 'main':
bpo-46308: Fix unportable test(1) operator in configure script (GH-30490)
https://github.com/python/cpython/commit/3d11c1b8b49800c5c4c295953cc3abf577f6065a
msg410538 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2022-01-14 01:45
commit b962544594c6a7c695330dd20fedffb3a1916ba6
Author: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Date:   Sat Jan 8 17:08:20 2022 -0800

    bpo-34602: Fix unportable test(1) operator in configure script (GH-30490) (GH-30491)
    
    (cherry picked from commit 3d11c1b8b49800c5c4c295953cc3abf577f6065a)
    
    Co-authored-by: Thomas Klausner <tk@giga.or.at>
History
Date User Action Args
2022-04-11 14:59:54adminsetgithub: 90466
2022-01-14 01:45:04vstinnersetstatus: open -> closed

versions: + Python 3.10
nosy: + vstinner

messages: + msg410538
resolution: fixed
stage: patch review -> resolved
2022-01-09 00:54:26miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request28695
2022-01-09 00:54:25ned.deilysetnosy: + ned.deily
messages: + msg410125
2022-01-08 21:46:25wizsetkeywords: + patch
stage: patch review
pull_requests: + pull_request28693
2022-01-08 21:43:24wizcreate