Skip to content

Commit cb5ec0b

Browse files
authored
Fix CFLAGS_JIT declaration (#660)
Silly typo in #659 — turns out macOS is where it fails with the wrong flags, not Linux
1 parent fe33e63 commit cb5ec0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpython-unix/build-cpython.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ fi
654654
autoconf
655655

656656
# Ensure `CFLAGS` are propagated to JIT compilation for 3.13+
657-
CFLAGS=$CFLAGS CPPFLAGS=$CFLAGS JIT_CFLAGS=$CFLAGS LDFLAGS=$LDFLAGS \
657+
CFLAGS=$CFLAGS CPPFLAGS=$CFLAGS CFLAGS_JIT=$CFLAGS LDFLAGS=$LDFLAGS \
658658
./configure ${CONFIGURE_FLAGS}
659659

660660
# Supplement produced Makefile with our modifications.

0 commit comments

Comments
 (0)