[llvm-commits] [llvm] r90728 - in /llvm/trunk: Makefile.config.in autoconf/configure.ac configure
Rafael Espindola
rafael.espindola at gmail.com
Sun Dec 6 16:27:35 PST 2009
Author: rafael
Date: Sun Dec 6 18:27:35 2009
New Revision: 90728
URL: http://llvm.org/viewvc/llvm-project?rev=90728&view=rev
Log:
Fix typos. Thanks to John Tytgat for noticing it!
Modified:
llvm/trunk/Makefile.config.in
llvm/trunk/autoconf/configure.ac
llvm/trunk/configure
Modified: llvm/trunk/Makefile.config.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.config.in?rev=90728&r1=90727&r2=90728&view=diff
==============================================================================
--- llvm/trunk/Makefile.config.in (original)
+++ llvm/trunk/Makefile.config.in Sun Dec 6 18:27:35 2009
@@ -313,7 +313,7 @@
# Location of the plugin header file for gold.
BINUTILS_INCDIR := @BINUTILS_INCDIR@
-C_INCLUDE_DIRS := @C_INCLUDE_DISR@
+C_INCLUDE_DIRS := @C_INCLUDE_DIRS@
CXX_INCLUDE_ROOT := @CXX_INCLUDE_ROOT@
CXX_INCLUDE_ARCH := @CXX_INCLUDE_ARCH@
CXX_INCLUDE_32BIT_DIR = @CXX_INCLUDE_32BIT_DIR@
Modified: llvm/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/configure.ac?rev=90728&r1=90727&r2=90728&view=diff
==============================================================================
--- llvm/trunk/autoconf/configure.ac (original)
+++ llvm/trunk/autoconf/configure.ac Sun Dec 6 18:27:35 2009
@@ -672,7 +672,7 @@
*) AC_MSG_ERROR([Invalid path for --with-ocaml-libdir. Provide full path]) ;;
esac
-AC_ARG_WITH(c-include-dir,
+AC_ARG_WITH(c-include-dirs,
AS_HELP_STRING([--with-c-include-dirs],
[Colon separated list of directories clang will search for headers]),,
withval="")
Modified: llvm/trunk/configure
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/configure?rev=90728&r1=90727&r2=90728&view=diff
==============================================================================
--- llvm/trunk/configure (original)
+++ llvm/trunk/configure Sun Dec 6 18:27:35 2009
@@ -5286,9 +5286,9 @@
esac
-# Check whether --with-c-include-dir was given.
-if test "${with_c_include_dir+set}" = set; then
- withval=$with_c_include_dir;
+# Check whether --with-c-include-dirs was given.
+if test "${with_c_include_dirs+set}" = set; then
+ withval=$with_c_include_dirs;
else
withval=""
fi
More information about the llvm-commits
mailing list