summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-03-26 08:55:37 -0400
committerBenjamin Peterson <benjamin@python.org>2013-03-26 08:55:37 -0400
commit615ea1a98f07bc67c8a65ff82888298d3cce9153 (patch)
tree5079363005c0bc5dbaeaa9e92305acc2e2f67fde /configure
parenta1eb483d8fcf785e13829d3e3d6cb0d772443d7a (diff)
downloadcpython-git-615ea1a98f07bc67c8a65ff82888298d3cce9153.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; }