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.
Created on 2004年08月31日 14:37 by josephwinston, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (4) | |||
|---|---|---|---|
| msg60561 - (view) | Author: Joseph Winston (josephwinston) | Date: 2004年08月31日 14:37 | |
1. configure and build python using the --includedir option. For example: $ configure --prefix=/TANGO/3/rel --includedir=/TANGO/3/rel/inc 2. Run $ make install 3. Notice that the include files are placed in /TANGO/3/rel/include not /TANGO/3/rel/inc. 4. Verify with $ python -c 'from distutils.sysconfig import *;print get_python_inc() 5. The problem is that get_python_inc() hard codes the include file path to use the name "include" 6. Other programs using distutils will fail since the INSTALL_SCHEMES found in install.py also have the name "include" hard coded. 7. Suggested fix would be to use --includedir to calculate the include path used by distutils. |
|||
| msg81098 - (view) | Author: Akira Kitada (akitada) * | Date: 2009年02月03日 21:21 | |
I'm having the same problem. This is a real headache, especially on systems that run both 32-bit and 64-bit apps, where I often see "lib64", "include64" and "bin64". In my opinion, lib, include and bin shouldn't be hard-coded in anywhere. Note that these hard-coded paths are found in other places, too. See http://bugs.python.org/issue1294959 for further detials. |
|||
| msg92542 - (view) | Author: Akira Kitada (akitada) * | Date: 2009年09月12日 12:46 | |
I think this is duplicate of issue858809. |
|||
| msg92608 - (view) | Author: Senthil Kumaran (orsenthil) * (Python committer) | Date: 2009年09月14日 13:11 | |
Yes, this is a duplicate of issue858809 and tarek is assigned to that one too. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:06 | admin | set | github: 40847 |
| 2010年08月11日 05:49:28 | eric.araujo | set | superseder: Use directories from configure rather than hardcoded |
| 2009年09月14日 13:11:09 | orsenthil | set | status: open -> closed nosy: + orsenthil messages: + msg92608 resolution: duplicate |
| 2009年09月12日 12:46:36 | akitada | set | messages: + msg92542 |
| 2009年03月10日 17:18:04 | matejcik | set | nosy:
+ matejcik |
| 2009年02月04日 16:42:41 | akitada | set | type: behavior |
| 2009年02月04日 16:34:58 | tarek | set | assignee: tarek versions: + Python 2.6, Python 3.0, Python 3.1, Python 2.7 |
| 2009年02月03日 21:21:04 | akitada | set | nosy:
+ tarek, akitada messages: + msg81098 |
| 2004年08月31日 14:37:25 | josephwinston | create | |