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) construct
Type: behavior Stage: resolved
Components: Build, macOS Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ronaldoussoren Nosy List: ronaldoussoren, wiz
Priority: normal Keywords: patch

Created on 2009-10-21 00:41 by wiz, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test.1.patch wiz, 2009-10-21 00:41 Patch against 2.6.3 fixing the test(1) usage.
Messages (3)
msg94305 - (view) Author: Thomas Klausner (wiz) * Date: 2009-10-21 00:41
Mac/BuildScript/scripts/postflight.patch-profile and Misc/build.sh
contain the unportable bash(1) "==" comparison operator for test(1). It
is not supported by most other shells or even test(1) from GNU
coreutils. Please use "=" instead.
msg94306 - (view) Author: Thomas Klausner (wiz) * Date: 2009-10-21 00:44
That's against python-2.6.3. I see that Misc/build.sh automagically
linked from this bug report doesn't have this problem any longer (though
the other file still does).
msg95503 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2009-11-19 17:46
Fixed the postflight issue in r76407 (trunk), r76408 (2.6), r76409 (3.2) 
and r76410 (3.1).
History
Date User Action Args
2022-04-11 14:56:54adminsetgithub: 51428
2009-11-19 17:46:01ronaldoussorensetstatus: open -> closed
resolution: fixed
messages: + msg95503

stage: resolved
2009-10-21 02:51:57ned.deilysetassignee: ronaldoussoren

components: + macOS
nosy: + ronaldoussoren
2009-10-21 00:44:05wizsetmessages: + msg94306
2009-10-21 00:41:25wizcreate