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.
This commit is contained in:
parent
2857277a55
commit
318313f17e
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue