File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ What's New in Python 3.3.1?
99
1010.. *Release date: 2013-XX-XX*
1111
12+ Build
13+ -----
14+
15+ - Issue #17550: Fix the --enable-profiling configure switch.
16+
1217Core and Builtins
1318-----------------
1419
Original file line number Diff line number Diff line change 55325532
55335533if test " x$enable_profiling " = xyes; then
55345534 ac_save_cc=" $CC "
5535- CC=" $( CC ) -pg"
5535+ CC=" $CC -pg"
55365536 cat confdefs.h - << _ACEOF >conftest.$ac_ext
55375537/* end confdefs.h. */
55385538int main() { return 0; }
Original file line number Diff line number Diff line change @@ -883,7 +883,7 @@ AC_ARG_ENABLE(profiling,
883883 AS_HELP_STRING ( [ --enable-profiling] , [ enable C-level code profiling] ) )
884884if test "x$enable_profiling" = xyes; then
885885 ac_save_cc="$CC"
886- CC="$(CC) -pg"
886+ CC="$CC -pg"
887887 AC_LINK_IFELSE ( [ AC_LANG_SOURCE ( [ [ int main() { return 0; }] ] ) ] ,
888888 [ ] ,
889889 [ enable_profiling=no] )
You can’t perform that action at this time.
0 commit comments