[llvm-commits] CVS: llvm/configure
Reid Spencer
reid at x10sys.com
Fri Jul 28 15:50:21 PDT 2006
Changes in directory llvm:
configure updated: 1.243 -> 1.244
---
Log message:
Fix the --with-extra-options to use the correct variable.
---
Diffs of the changes: (+3 -3)
configure | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/configure
diff -u llvm/configure:1.243 llvm/configure:1.244
--- llvm/configure:1.243 Fri Jul 28 00:05:00 2006
+++ llvm/configure Fri Jul 28 17:50:07 2006
@@ -3347,11 +3347,11 @@
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
More information about the llvm-commits
mailing list