diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-07-28 22:50:07 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-07-28 22:50:07 +0000 |
commit | ceaf1c33c036ac33e3bc5aa97c57547e30627742 (patch) | |
tree | 5cccfd72e54ab00ccc5f502adccc1392287423a2 /autoconf | |
parent | 1bebfb5ae4c240064beffe3232402ea68b110510 (diff) |
Fix the --with-extra-options to use the correct variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29403 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-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 6d1624491d..4526c48dbe 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -337,10 +337,10 @@ dnl Specify extra build options AC_ARG_WITH(extra-options, AS_HELP_STRING([--with-extra-options], [Specify addtional options to compile LLVM with]),, - extraopts=default) -case "$extraopts" in + withval=default) +case "$withval" in default) EXTRA_OPTIONS= ;; - *) EXTRA_OPTIONS=$extraopts ;; + *) EXTRA_OPTIONS=$withval ;; esac AC_SUBST(EXTRA_OPTIONS,$EXTRA_OPTIONS) |