Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 95d53d2

Browse files
committed
Use python$EXE instead of python, for Darwin. (Patch by Tony
Lownds. (#101816) [Note: I'm not sure that this is really the right fix. Surely Darwin doesn't require you to say "python.exe" everywhere??? Even Windows doesn't! Or am I misunderstanding the point?]
1 parent fdddb31 commit 95d53d2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Lib/plat-generic/regen

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
set -v
3-
python ../../Tools/scripts/h2py.py /usr/include/fcntl.h
4-
python ../../Tools/scripts/h2py.py /usr/include/sys/socket.h
5-
python ../../Tools/scripts/h2py.py -i '(u_long)' /usr/include/netinet/in.h
6-
python ../../Tools/scripts/h2py.py /usr/include/termios.h
3+
python$EXE ../../Tools/scripts/h2py.py /usr/include/fcntl.h
4+
python$EXE ../../Tools/scripts/h2py.py /usr/include/sys/socket.h
5+
python$EXE ../../Tools/scripts/h2py.py -i '(u_long)' /usr/include/netinet/in.h
6+
python$EXE ../../Tools/scripts/h2py.py /usr/include/termios.h

0 commit comments

Comments
 (0)