aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-07-28 22:50:07 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-07-28 22:50:07 +0000
commitceaf1c33c036ac33e3bc5aa97c57547e30627742 (patch)
tree5cccfd72e54ab00ccc5f502adccc1392287423a2 /configure
parent1bebfb5ae4c240064beffe3232402ea68b110510 (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 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index c9685252cd..6d018b8df5 100755
--- a/configure
+++ b/configure
@@ -3347,11 +3347,11 @@ if test "${with_extra_options+set}" = set; then
withval="$with_extra_options"
else
- extraopts=default
+ withval=default
fi;
-case "$extraopts" in
+case "$withval" in
default) EXTRA_OPTIONS= ;;
- *) EXTRA_OPTIONS=$extraopts ;;
+ *) EXTRA_OPTIONS=$withval ;;
esac
EXTRA_OPTIONS=$EXTRA_OPTIONS