diff options
author | Georg Brandl <georg@python.org> | 2013-03-26 13:04:40 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-03-26 13:04:40 (GMT) |
commit | f4e68b1816cc1961398647732c880ef8736a9938 (patch) | |
tree | d43fab1a7bd2d559eecf37cdfcac21da4d0643c2 | |
parent | 46a47169e4bb2cfc5d25274be6145e710935e318 (diff) | |
download | cpython-f4e68b1816cc1961398647732c880ef8736a9938.zip cpython-f4e68b1816cc1961398647732c880ef8736a9938.tar.gz cpython-f4e68b1816cc1961398647732c880ef8736a9938.tar.bz2 |
fix variable reference to fix --enable-profiling (closes #17550)
-rw-r--r-- | Misc/NEWS | 11 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 13 insertions, 2 deletions
@@ -2,6 +2,17 @@ Python News +++++++++++ +What's New in Python 3.3.1? +=========================== + +*Release date: 07-Apr-2013* + +Build +----- + +- Issue #17550: Fix the --enable-profiling configure switch. + + What's New in Python 3.3.1 release candidate 1? =============================================== @@ -5532,7 +5532,7 @@ fi if test "x$enable_profiling" = xyes; then ac_save_cc="$CC" - CC="$(CC) -pg" + CC="$CC -pg" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main() { return 0; } diff --git a/configure.ac b/configure.ac index 8cf0e92..6d54b16 100644 --- a/configure.ac +++ b/configure.ac @@ -883,7 +883,7 @@ AC_ARG_ENABLE(profiling, AS_HELP_STRING([--enable-profiling], [enable C-level code profiling])) if test "x$enable_profiling" = xyes; then ac_save_cc="$CC" - CC="$(CC) -pg" + CC="$CC -pg" AC_LINK_IFELSE([AC_LANG_SOURCE([[int main() { return 0; }]])], [], [enable_profiling=no]) |