[llvm-commits] CVS: llvm/autoconf/configure.ac

Reid Spencer reid at x10sys.com
Fri Jul 28 15:50:22 PDT 2006



Changes in directory llvm/autoconf:

configure.ac updated: 1.241 -> 1.242
---
Log message:

Fix the --with-extra-options to use the correct variable.


---
Diffs of the changes:  (+3 -3)

 configure.ac |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/autoconf/configure.ac
diff -u llvm/autoconf/configure.ac:1.241 llvm/autoconf/configure.ac:1.242
--- llvm/autoconf/configure.ac:1.241	Fri Jul 28 00:05:00 2006
+++ llvm/autoconf/configure.ac	Fri Jul 28 17:50:07 2006
@@ -337,10 +337,10 @@
 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)
 






More information about the llvm-commits mailing list