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 2006年05月03日 20:16 by hanwen, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (4) | |||
|---|---|---|---|
| msg60909 - (view) | Author: Han-Wen Nienhuys (hanwen) * | Date: 2006年05月03日 20:16 | |
In Makefiles, a $$ should expand into a literal $
distutils.sysconfig doesn't deal with this.
>>> print open('a.make').read ()
FOO = $${bar} bla bla
>>> sysconfig.parse_makefile ('a.make')
{'FOO': '$ bla bla', 'bar': ''}
|
|||
| msg117779 - (view) | Author: Jeffrey Finkelstein (jfinkels) * | Date: 2010年10月01日 05:49 | |
There seems to be a test case for this: http://svn.python.org/view/python/trunk/Lib/distutils/tests/test_sysconfig.py?view=diff&r1=73340&r2=73341 |
|||
| msg240991 - (view) | Author: Kasia Jachim (kjachim) | Date: 2015年04月14日 19:21 | |
Tested on 2.7.6 (default from Ubuntu) and 3.5.0a3+ (built from sources), in both cases $$ seems to work correctly, returned {'FOO': '${bar} bla bla'} for the input from msg60909.
|
|||
| msg241071 - (view) | Author: Ned Deily (ned.deily) * (Python committer) | Date: 2015年04月15日 01:56 | |
Thanks for investigating this, Kasia. It appears that this problem was fixed some time ago in the changes associated with Issue5201. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:17 | admin | set | github: 43317 |
| 2015年04月15日 01:56:03 | ned.deily | set | status: open -> closed superseder: Using LDFLAGS='-rpath=\$$LIB:/some/other/path' ./configure breaks the build versions: - Python 3.2 nosy: + ned.deily messages: + msg241071 resolution: duplicate stage: test needed -> resolved |
| 2015年04月14日 19:21:37 | kjachim | set | nosy:
+ kjachim messages: + msg240991 |
| 2010年10月01日 05:49:05 | jfinkels | set | nosy:
+ jfinkels messages: + msg117779 |
| 2010年08月22日 10:08:59 | BreamoreBoy | set | assignee: tarek |
| 2010年07月31日 11:43:30 | BreamoreBoy | set | stage: test needed versions: + Python 3.2, - Python 2.6, Python 3.0 |
| 2009年02月05日 16:34:59 | akitada | set | nosy:
+ tarek type: behavior versions: + Python 2.6, Python 3.0, Python 3.1, Python 2.7, - Python 2.4 |
| 2006年05月03日 20:16:33 | hanwen | create | |