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: python@93442 breaks build if system Python is 2.6
Type: compile error Stage: resolved
Components: Build Versions: Python 3.5
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: Marcel.Hellkamp, berker.peksag
Priority: normal Keywords:

Created on 2014-12-27 15:31 by Marcel.Hellkamp, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg233134 - (view) Author: Marcel Hellkamp (Marcel.Hellkamp) Date: 2014-12-27 15:31
On CentOS 6.6 the system Python is 2.6. The use to set literals in Parser/adsl.py breaks the build process on these systems. The ./configure should ensure that a compatible version of python is available.
msg233137 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2014-12-27 16:33
Could you try the following command?

    make touch

See also https://docs.python.org/devguide/setup.html?highlight=touch#avoiding-re-creating-auto-generated-files
msg233138 - (view) Author: Marcel Hellkamp (Marcel.Hellkamp) Date: 2014-12-27 16:46
"make touch" solved the problem. A clear case of RTFM :) Sorry for the noise.
History
Date User Action Args
2022-04-11 14:58:11adminsetgithub: 67311
2014-12-27 16:47:53berker.peksagsetstage: resolved
2014-12-27 16:46:03Marcel.Hellkampsetstatus: open -> closed
resolution: not a bug
messages: + msg233138
2014-12-27 16:33:18berker.peksagsetnosy: + berker.peksag

messages: + msg233137
title: python@93442 breaks build if system Python is 2.6 -> python@93442 breaks build if system Python is 2.6
2014-12-27 15:31:19Marcel.Hellkampcreate