summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-03-26 14:04:40 +0100
committerGeorg Brandl <georg@python.org>2013-03-26 14:04:40 +0100
commit7484e0b6504185161ff8ef5967fa67a334245473 (patch)
treee0a27d463cb0fc8ef64bbf2bbadd75a6e2363031 /configure
parent00e9c203676e9cf4c67c1223c4e35514f84640fe (diff)
downloadcpython-7484e0b6504185161ff8ef5967fa67a334245473.tar.gz
fix variable reference to fix --enable-profiling (closes #17550)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index fa8d518783..d3214abb8c 100755
--- a/configure
+++ b/configure
@@ -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; }