diff options
author | doko@python.org <doko@python.org> | 2013-01-25 18:45:41 +0100 |
---|---|---|
committer | doko@python.org <doko@python.org> | 2013-01-25 18:45:41 +0100 |
commit | 90c8d06d687eed87fa61bf6bcc3a40beeaef39cd (patch) | |
tree | 1e1622269d0aed50e8354deb164cf9498c54e172 /Lib | |
parent | 20190e2d54e6d513bb197a160cdfd236bf63f168 (diff) | |
parent | a10e4a9afbb95e74657455b6fb07a81fce948a3b (diff) | |
download | cpython-git-90c8d06d687eed87fa61bf6bcc3a40beeaef39cd.tar.gz |
- Issue #17031: Fix running regen in cross builds.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/plat-generic/regen | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-generic/regen b/Lib/plat-generic/regen index a20cdc1518..c96167dcb0 100755 --- a/Lib/plat-generic/regen +++ b/Lib/plat-generic/regen @@ -1,3 +1,3 @@ #! /bin/sh set -v -python$EXE ../../Tools/scripts/h2py.py -i '(u_long)' /usr/include/netinet/in.h +eval $PYTHON_FOR_BUILD ../../Tools/scripts/h2py.py -i "'(u_long)'" /usr/include/netinet/in.h |