From 318313f17e0a7cb21b2a28a3851676d26eb8ca11 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Thu, 29 Jan 2009 20:46:05 +0000 Subject: [PATCH] Sigh, fix _3_ (yes, 3) typos, this is what I get for committing without testing first while on the phone. Originally committed to SVN as r2716. --- configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index 7d468e48b..d17fa952a 100644 --- a/configure.in +++ b/configure.in @@ -1046,14 +1046,14 @@ fi # Profiling ########### -AC_ARG_VAR([PROFILE_FLAGS], [Profile flag(s) to use with --enable-profiling (default: -pg)]) +AC_ARG_VAR([PROFILE_FLAGS], [Profile flag(s) to use with --enable-profile (default: -pg)]) if test -z "$PROFILE_FLAGS"; then PROFILE_FLAGS="-pg"; fi AC_MSG_CHECKING([whether to turn on profiling]) -AC_ARG_ENABLE(debug, [ --enable-profile turn on profiling (default=no)]) -if test "$enable_prifile" = "yes"; then +AC_ARG_ENABLE(profile, [ --enable-profile turn on profiling (default=no)]) +if test "$enable_profile" = "yes"; then AC_MSG_RESULT([yes ($PROFILE_FLAGS)]) CPPFLAGS="$PROFILE_FLAGS $CPPFLAGS" else