mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00

Script to regenerate platform-specific modules of constants. [I moved common paths to variables for easier reading by humans. -- FLD] This closes SourceForge patch #101781.
10 lines
251 B
Bash
Executable file
10 lines
251 B
Bash
Executable file
#! /bin/sh
|
|
|
|
H2PY=../../Tools/scripts/h2py.py
|
|
HEADERS=/boot/develop/headers
|
|
|
|
set -v
|
|
python $H2PY $HEADERS/posix/fcntl.h
|
|
python $H2PY $HEADERS/be/net/socket.h
|
|
python $H2PY -i '(u_long)' $HEADERS/be/net/netinet/in.h
|
|
python $H2PY $HEADERS/posix/termios.h
|