diff options
author | Eric Christopher <echristo@gmail.com> | 2012-11-19 19:31:02 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2012-11-19 19:31:02 +0000 |
commit | f0b3b74477f7305ef964ecc01d79387c839dae0e (patch) | |
tree | 624599e097cb5598f1fde54e37ef9cd820ac7f89 /autoconf/configure.ac | |
parent | e46b14acab1fcb7434783d2f0e00cfee681335f0 (diff) |
Fix a pasto.
Noticed by Dimitri Andric!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168319 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf/configure.ac')
-rw-r--r-- | autoconf/configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index b206f08f02..eec857f782 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -685,9 +685,9 @@ AC_ARG_ENABLE(backtraces, [Enable embedding backtraces on crash (default is YES)]),, enableval=default) case "$enableval" in - yes) AC_SUBST(ENABLE_TIMESTAMPS,[1]) ;; - no) AC_SUBST(ENABLE_TIMESTAMPS,[0]) ;; - default) AC_SUBST(ENABLE_TIMESTAMPS,[1]) ;; + yes) AC_SUBST(ENABLE_BACKTRACES,[1]) ;; + no) AC_SUBST(ENABLE_BACKTRACES,[0]) ;; + default) AC_SUBST(ENABLE_BACKTRACES,[1]) ;; *) AC_MSG_ERROR([Invalid setting for --enable-backtraces. Use "yes" or "no"]) ;; esac AC_DEFINE_UNQUOTED([ENABLE_BACKTRACES],$ENABLE_BACKTRACES, |